diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-22 02:19:45 -0300 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-26 00:11:30 -0300 |
| commit | 48e6f77c0316f047daddf0ecec2014cfbdefffbb (patch) | |
| tree | 0c648b0f0046b88f55868d8060653ad4b6c10a54 /src/video_core/shader/shader_ir.h | |
| parent | c3471bf6185e6942bb76dee6408b10ea74e3f95d (diff) | |
shader/decode: Split memory and texture instructions decoding
Diffstat (limited to 'src/video_core/shader/shader_ir.h')
| -rw-r--r-- | src/video_core/shader/shader_ir.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index 52c7f2c4e..0548c46f0 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h @@ -614,6 +614,7 @@ private: u32 DecodeHfma2(NodeBlock& bb, u32 pc); u32 DecodeConversion(NodeBlock& bb, u32 pc); u32 DecodeMemory(NodeBlock& bb, u32 pc); + u32 DecodeTexture(NodeBlock& bb, u32 pc); u32 DecodeFloatSetPredicate(NodeBlock& bb, u32 pc); u32 DecodeIntegerSetPredicate(NodeBlock& bb, u32 pc); u32 DecodeHalfSetPredicate(NodeBlock& bb, u32 pc); |
