diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-11-12 15:07:22 +0100 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-11-14 16:15:27 +0100 |
commit | f3d1b370aa0fd614cf28f8a609b70906d40da751 (patch) | |
tree | 028b5f4b34c30d477e6989b49540db508a8db075 /src/video_core/engines/shader_bytecode.h | |
parent | Shader_Bytecode: Add encodings for FLO, SHF and TXD (diff) | |
download | yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.gz yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.bz2 yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.lz yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.xz yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.zst yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.zip |
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index f8d67e227..16f410538 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -800,6 +800,12 @@ union Instruction { } popc; union { + BitField<41, 1, u64> sh; + BitField<40, 1, u64> invert; + BitField<48, 1, u64> is_signed; + } flo; + + union { BitField<39, 3, u64> pred; BitField<42, 1, u64> neg_pred; } sel; |