diff options
| author | 2019-02-02 23:44:38 -0300 | |
|---|---|---|
| committer | 2019-02-03 00:25:40 -0300 | |
| commit | 9feb68085d05a265fd9ec7f26791390516cd3bd6 (patch) | |
| tree | fff3e69a9b3408596e44dd1abdc2e6a398d6e613 /src/video_core/engines | |
| parent | shader_ir/memory: Add LD_L 64 bits loads (diff) | |
| download | yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.gz yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.tar.xz yuzu-9feb68085d05a265fd9ec7f26791390516cd3bd6.zip | |
shader_bytecode: Rename BytesN enums to BitsN
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 713b01c9f..2f5a966d2 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -217,9 +217,9 @@ enum class StoreType : u64 { | |||
| 217 | Signed8 = 1, | 217 | Signed8 = 1, |
| 218 | Unsigned16 = 2, | 218 | Unsigned16 = 2, |
| 219 | Signed16 = 3, | 219 | Signed16 = 3, |
| 220 | Bytes32 = 4, | 220 | Bits32 = 4, |
| 221 | Bytes64 = 5, | 221 | Bits64 = 5, |
| 222 | Bytes128 = 6, | 222 | Bits128 = 6, |
| 223 | }; | 223 | }; |
| 224 | 224 | ||
| 225 | enum class IMinMaxExchange : u64 { | 225 | enum class IMinMaxExchange : u64 { |