diff options
| author | 2018-12-26 15:49:41 -0500 | |
|---|---|---|
| committer | 2018-12-26 15:49:41 -0500 | |
| commit | 46b8b03015790f0310039448e8618a241f53da13 (patch) | |
| tree | 429975ee2690c35f059839ac5756b2852cfd0aba /src | |
| parent | Merge pull request #1886 from FearlessTobi/port-4164 (diff) | |
| parent | shader_bytecode: Fixup TEXS.F16 encoding (diff) | |
| download | yuzu-46b8b03015790f0310039448e8618a241f53da13.tar.gz yuzu-46b8b03015790f0310039448e8618a241f53da13.tar.xz yuzu-46b8b03015790f0310039448e8618a241f53da13.zip | |
Merge pull request #1943 from ReinUsesLisp/fixup-texs
shader_bytecode: Fixup TEXS.F16 encoding
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
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 eb703bb5a..e53c77f2b 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -1049,7 +1049,7 @@ union Instruction { | |||
| 1049 | BitField<49, 1, u64> nodep_flag; | 1049 | BitField<49, 1, u64> nodep_flag; |
| 1050 | BitField<50, 3, u64> component_mask_selector; | 1050 | BitField<50, 3, u64> component_mask_selector; |
| 1051 | BitField<53, 4, u64> texture_info; | 1051 | BitField<53, 4, u64> texture_info; |
| 1052 | BitField<60, 1, u64> fp32_flag; | 1052 | BitField<59, 1, u64> fp32_flag; |
| 1053 | 1053 | ||
| 1054 | TextureType GetTextureType() const { | 1054 | TextureType GetTextureType() const { |
| 1055 | // The TEXS instruction has a weird encoding for the texture type. | 1055 | // The TEXS instruction has a weird encoding for the texture type. |