diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/shader/shader_ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index b93cde71a..e4253fdb3 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h | |||
| @@ -328,8 +328,8 @@ struct MetaTexture { | |||
| 328 | u32 element{}; | 328 | u32 element{}; |
| 329 | }; | 329 | }; |
| 330 | 330 | ||
| 331 | inline constexpr MetaArithmetic PRECISE = {true}; | 331 | constexpr MetaArithmetic PRECISE = {true}; |
| 332 | inline constexpr MetaArithmetic NO_PRECISE = {false}; | 332 | constexpr MetaArithmetic NO_PRECISE = {false}; |
| 333 | 333 | ||
| 334 | using Meta = std::variant<MetaArithmetic, MetaTexture, Tegra::Shader::HalfType>; | 334 | using Meta = std::variant<MetaArithmetic, MetaTexture, Tegra::Shader::HalfType>; |
| 335 | 335 | ||