aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-22 12:53:47 -0400
committerGitHub <noreply@github.com>2018-10-22 12:53:47 -0400
commit1226a5706e3e877092d2d2a4d014fd548d81a01b (patch)
treef742d23aaf0f7b6fa2201c8efc3312dbe193a54b /src/video_core/engines/shader_bytecode.h
parentfcad3a734dcb08b75fa943f432c1efb057fe4341 (diff)
parent5c5b4e8e7d26032bf9e2e948aad3d309cca1a78a (diff)
Merge pull request #1547 from FernandoS27/fix-fset
Fixed FSETP and FSET
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index e3d67ff87..67501cf0a 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -753,7 +753,6 @@ union Instruction {
BitField<45, 2, PredOperation> op;
BitField<47, 1, u64> ftz;
BitField<48, 4, PredCondition> cond;
- BitField<56, 1, u64> neg_b;
} fsetp;
union {
@@ -828,7 +827,6 @@ union Instruction {
BitField<53, 1, u64> neg_b;
BitField<54, 1, u64> abs_a;
BitField<55, 1, u64> ftz;
- BitField<56, 1, u64> neg_imm;
} fset;
union {