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-06-01 05:07:13 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:37 +0200
commit8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3 (patch)
tree7312ad1f04957f63a0a848f71f47271a5d29b234 /src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
parentglsl: Implement ImageGradient and other texture function variants (diff)
downloadyuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.tar
yuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.tar.gz
yuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.tar.bz2
yuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.tar.lz
yuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.tar.xz
yuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.tar.zst
yuzu-8c684b3e2327bc7b0c02f2a22dbf52c11884ecd3.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp10
1 files changed, 1 insertions, 9 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 3ed4e04d3..cf7b2a51e 100644
--- a/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
+++ b/src/shader_recompiler/backend/glsl/emit_glsl_not_implemented.cpp
@@ -151,14 +151,6 @@ void EmitSetAttributeIndexed(EmitContext& ctx, std::string_view offset, std::str
NotImplemented();
}
-void EmitGetPatch(EmitContext& ctx, IR::Patch patch) {
- NotImplemented();
-}
-
-void EmitSetPatch(EmitContext& ctx, IR::Patch patch, std::string_view value) {
- NotImplemented();
-}
-
void EmitSetSampleMask(EmitContext& ctx, std::string_view value) {
NotImplemented();
}
@@ -204,7 +196,7 @@ void EmitWorkgroupId(EmitContext& ctx, IR::Inst& inst) {
}
void EmitInvocationId(EmitContext& ctx, IR::Inst& inst) {
- NotImplemented();
+ ctx.AddU32("{}=uint(gl_InvocationID);", inst);
}
void EmitSampleId(EmitContext& ctx, IR::Inst& inst) {