diff options
Diffstat (limited to 'src/shader_recompiler/backend/glasm')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp b/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp index 066ed1012..f7fec0545 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp | |||
| @@ -53,15 +53,15 @@ void EmitDemoteToHelperInvocation(EmitContext& ctx) { | |||
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | void EmitBarrier(EmitContext& ctx) { | 55 | void EmitBarrier(EmitContext& ctx) { |
| 56 | NotImplemented(); | 56 | ctx.Add("BAR;"); |
| 57 | } | 57 | } |
| 58 | 58 | ||
| 59 | void EmitWorkgroupMemoryBarrier(EmitContext& ctx) { | 59 | void EmitWorkgroupMemoryBarrier(EmitContext& ctx) { |
| 60 | NotImplemented(); | 60 | ctx.Add("MEMBAR.CTA;"); |
| 61 | } | 61 | } |
| 62 | 62 | ||
| 63 | void EmitDeviceMemoryBarrier(EmitContext& ctx) { | 63 | void EmitDeviceMemoryBarrier(EmitContext& ctx) { |
| 64 | NotImplemented(); | 64 | ctx.Add("MEMBAR;"); |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | void EmitPrologue(EmitContext& ctx) { | 67 | void EmitPrologue(EmitContext& ctx) { |