diff options
| author | 2021-02-05 05:58:02 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:21 -0400 | |
| commit | e81739493a0cacc1efe3295f9d287d5d31b1a989 (patch) | |
| tree | 11a3d04ce9def535414a00226030798f337c053c /src/shader_recompiler/frontend/ir/value.h | |
| parent | shader: Initial instruction support (diff) | |
| download | yuzu-e81739493a0cacc1efe3295f9d287d5d31b1a989.tar.gz yuzu-e81739493a0cacc1efe3295f9d287d5d31b1a989.tar.xz yuzu-e81739493a0cacc1efe3295f9d287d5d31b1a989.zip | |
shader: Constant propagation and global memory to storage buffer
Diffstat (limited to 'src/shader_recompiler/frontend/ir/value.h')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/value.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/value.h b/src/shader_recompiler/frontend/ir/value.h index 368119921..31f831794 100644 --- a/src/shader_recompiler/frontend/ir/value.h +++ b/src/shader_recompiler/frontend/ir/value.h | |||
| @@ -96,6 +96,5 @@ using U64 = TypedValue<Type::U64>; | |||
| 96 | using U32U64 = TypedValue<Type::U32 | Type::U64>; | 96 | using U32U64 = TypedValue<Type::U32 | Type::U64>; |
| 97 | using U16U32U64 = TypedValue<Type::U16 | Type::U32 | Type::U64>; | 97 | using U16U32U64 = TypedValue<Type::U16 | Type::U32 | Type::U64>; |
| 98 | using UAny = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64>; | 98 | using UAny = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64>; |
| 99 | using ZSCO = TypedValue<Type::ZSCO>; | ||
| 100 | 99 | ||
| 101 | } // namespace Shader::IR | 100 | } // namespace Shader::IR |