diff options
| author | 2019-02-22 03:30:12 -0300 | |
|---|---|---|
| committer | 2019-02-26 00:11:30 -0300 | |
| commit | 5ca63d06757a92fdbd7d75d81f0c9ff1d7ab4e62 (patch) | |
| tree | f8b542a250f4ed649fa6e27ee5fa8d8dbef2c2d1 /src/video_core/engines | |
| parent | shader/decode: Split memory and texture instructions decoding (diff) | |
| download | yuzu-5ca63d06757a92fdbd7d75d81f0c9ff1d7ab4e62.tar.gz yuzu-5ca63d06757a92fdbd7d75d81f0c9ff1d7ab4e62.tar.xz yuzu-5ca63d06757a92fdbd7d75d81f0c9ff1d7ab4e62.zip | |
shader/decode: Remove extras from MetaTexture
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index d14cd5f20..f62ae8801 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -325,11 +325,11 @@ enum class TextureQueryType : u64 { | |||
| 325 | 325 | ||
| 326 | enum class TextureProcessMode : u64 { | 326 | enum class TextureProcessMode : u64 { |
| 327 | None = 0, | 327 | None = 0, |
| 328 | LZ = 1, // Unknown, appears to be the same as none. | 328 | LZ = 1, // Load LOD of zero. |
| 329 | LB = 2, // Load Bias. | 329 | LB = 2, // Load Bias. |
| 330 | LL = 3, // Load LOD (LevelOfDetail) | 330 | LL = 3, // Load LOD. |
| 331 | LBA = 6, // Load Bias. The A is unknown, does not appear to differ with LB | 331 | LBA = 6, // Load Bias. The A is unknown, does not appear to differ with LB. |
| 332 | LLA = 7 // Load LOD. The A is unknown, does not appear to differ with LL | 332 | LLA = 7 // Load LOD. The A is unknown, does not appear to differ with LL. |
| 333 | }; | 333 | }; |
| 334 | 334 | ||
| 335 | enum class TextureMiscMode : u64 { | 335 | enum class TextureMiscMode : u64 { |