Browse Source
Merge pull request #1943 from ReinUsesLisp/fixup-texs
shader_bytecode: Fixup TEXS.F16 encoding
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/video_core/engines/shader_bytecode.h
|
|
|
@ -1049,7 +1049,7 @@ union Instruction { |
|
|
|
BitField<49, 1, u64> nodep_flag; |
|
|
|
BitField<50, 3, u64> component_mask_selector; |
|
|
|
BitField<53, 4, u64> texture_info; |
|
|
|
BitField<60, 1, u64> fp32_flag; |
|
|
|
BitField<59, 1, u64> fp32_flag; |
|
|
|
|
|
|
|
TextureType GetTextureType() const { |
|
|
|
// The TEXS instruction has a weird encoding for the texture type. |
|
|
|
|