summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-05-31 20:17:00 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:37 +0200
commit68d075d1e8af66c3f8044b162344bffc943168a8 (patch)
tree14eff63022bdfc599b128af5795eb77c4878fcdd /src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
parentglsl: Implement geometry shaders (diff)
downloadyuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.gz
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.bz2
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.lz
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.xz
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.tar.zst
yuzu-68d075d1e8af66c3f8044b162344bffc943168a8.zip
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
index 9e5715605..3ed4e04d3 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
@@ -211,8 +211,8 @@ void EmitSampleId(EmitContext& ctx, IR::Inst& inst) {
NotImplemented();
}
-void EmitIsHelperInvocation(EmitContext& ctx) {
- NotImplemented();
+void EmitIsHelperInvocation(EmitContext& ctx, IR::Inst& inst) {
+ ctx.AddU1("{}=gl_HelperInvocation;", inst);
}
void EmitYDirection(EmitContext& ctx, IR::Inst& inst) {