aboutsummaryrefslogtreecommitdiff
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-22 21:51:26 -0400
commited6a1b1a3def4b8ed8c8fd1a7774a0a14edefc70 (patch)
treec7ec469906ac5a8d2788316203b3c507286b940c /src/shader_recompiler/frontend/ir/modifiers.h
parent80df541a0860eecc599f60a7b2955e1e286bc48a (diff)
shader: Address feedback
Diffstat (limited to 'src/shader_recompiler/frontend/ir/modifiers.h')
-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 2aa4ac79b3..461671326b 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};