diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-19 10:55:27 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-19 14:23:15 +0200 |
commit | e310d943b8eaea2e06166a593ef8ded26256acf4 (patch) | |
tree | 5b7d6988e988c57a7dad548f7a86b55bbca8a9f1 | |
parent | shader/shader_ir: Simplify constructors for OperationNode (diff) | |
download | yuzu-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 |
-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 { 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>; |