diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-19 23:01:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-19 23:01:48 +0200 |
commit | 51ddb130c59e2d574a478f43c254292cd63df6b1 (patch) | |
tree | 0c9a6ea9a983186401f81c1d53b4a541143d17d4 /src/video_core/engines | |
parent | Merge pull request #1105 from Subv/convert_neg (diff) | |
parent | Shaders: Corrected the 'abs' and 'neg' bit usage in the float arithmetic instructions. (diff) | |
download | yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.tar yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.tar.gz yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.tar.bz2 yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.tar.lz yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.tar.xz yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.tar.zst yuzu-51ddb130c59e2d574a478f43c254292cd63df6b1.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 096de9632..9413a81fb 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -293,6 +293,10 @@ union Instruction { } alu; union { + BitField<48, 1, u64> negate_b; + } fmul; + + union { BitField<48, 1, u64> is_signed; } shift; |