summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-19 10:55:27 +0200
committerLioncash <mathew1800@gmail.com>2019-05-19 14:23:15 +0200
commite310d943b8eaea2e06166a593ef8ded26256acf4 (patch)
tree5b7d6988e988c57a7dad548f7a86b55bbca8a9f1 /src/video_core
parentshader/shader_ir: Simplify constructors for OperationNode (diff)
downloadyuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.tar
yuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.tar.gz
yuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.tar.bz2
yuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.tar.lz
yuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.tar.xz
yuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.tar.zst
yuzu-e310d943b8eaea2e06166a593ef8ded26256acf4.zip
Diffstat (limited to 'src/video_core')
-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 {
u32 element{};
};
-inline constexpr MetaArithmetic PRECISE = {true};
-inline constexpr MetaArithmetic NO_PRECISE = {false};
+constexpr MetaArithmetic PRECISE = {true};
+constexpr MetaArithmetic NO_PRECISE = {false};
using Meta = std::variant<MetaArithmetic, MetaTexture, Tegra::Shader::HalfType>;