summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/modifiers.h
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-04-03 02:34:07 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:26 +0200
commited6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70 (patch)
treec7ec469906ac5a8d2788316203b3c507286b940c /src/shader_recompiler/frontend/ir/modifiers.h
parentshader: "Implement" NOP (diff)
downloadyuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.tar
yuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.tar.gz
yuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.tar.bz2
yuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.tar.lz
yuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.tar.xz
yuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.tar.zst
yuzu-ed6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/modifiers.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/modifiers.h b/src/shader_recompiler/frontend/ir/modifiers.h
index 2aa4ac79b..461671326 100644
--- a/src/shader_recompiler/frontend/ir/modifiers.h
+++ b/src/shader_recompiler/frontend/ir/modifiers.h
@@ -25,7 +25,13 @@ enum class FpRounding : u8 {
RZ, // Round towards zero
};
-enum class MemoryScope : u32 { DontCare, Warp, Workgroup, Device, System };
+enum class MemoryScope : u32 {
+ DontCare,
+ Warp,
+ Workgroup,
+ Device,
+ System,
+};
struct FpControl {
bool no_contraction{false};