aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-17 22:00:43 -0500
committerGitHub <noreply@github.com>2018-12-17 22:00:43 -0500
commit95255899e7efd7967251cebc555e22fab0596a85 (patch)
tree555084c0a7ffcedd43687e5d3fa16bffa8923b95 /src/video_core/engines/shader_bytecode.h
parent84823a3036d7bedfb4c4820e7019fb7daa9b4e4b (diff)
parent72599cc667046cbd588fe1c4e3e3c7b55b272e29 (diff)
Merge pull request #1903 from heapo/fmul_postfactor
Implement postfactor multiplication/division for fmul instructions
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 5ea094e64..5198cd268 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -575,7 +575,7 @@ union Instruction {
union {
BitField<39, 2, u64> tab5cb8_2;
- BitField<41, 3, u64> tab5c68_1;
+ BitField<41, 3, u64> postfactor;
BitField<44, 2, u64> tab5c68_0;
BitField<48, 1, u64> negate_b;
} fmul;