diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-19 21:51:52 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:32 +0200 |
commit | d957b3a8fef35ec0c2797e5ff0793f7236c08a3f (patch) | |
tree | 6d0cfa051d46c4f0cfa72014d4945103c3b8a5cb /src/shader_recompiler/backend | |
parent | glasm: Fix compute stage name (diff) | |
download | yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.tar yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.tar.gz yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.tar.bz2 yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.tar.lz yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.tar.xz yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.tar.zst yuzu-d957b3a8fef35ec0c2797e5ff0793f7236c08a3f.zip |
Diffstat (limited to 'src/shader_recompiler/backend')
-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) { } void EmitBarrier(EmitContext& ctx) { - NotImplemented(); + ctx.Add("BAR;"); } void EmitWorkgroupMemoryBarrier(EmitContext& ctx) { - NotImplemented(); + ctx.Add("MEMBAR.CTA;"); } void EmitDeviceMemoryBarrier(EmitContext& ctx) { - NotImplemented(); + ctx.Add("MEMBAR;"); } void EmitPrologue(EmitContext& ctx) { |