summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/shader/shader_ir.h4
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
331inline constexpr MetaArithmetic PRECISE = {true}; 331constexpr MetaArithmetic PRECISE = {true};
332inline constexpr MetaArithmetic NO_PRECISE = {false}; 332constexpr MetaArithmetic NO_PRECISE = {false};
333 333
334using Meta = std::variant<MetaArithmetic, MetaTexture, Tegra::Shader::HalfType>; 334using Meta = std::variant<MetaArithmetic, MetaTexture, Tegra::Shader::HalfType>;
335 335