summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_ir.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-05-03 08:00:51 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-05-20 21:36:49 +0200
commit9c3461604cff25ef11ecb6937f904eac37090ee7 (patch)
treef6ce8922bfd63ec15c1f71e12c592f26cf94c79c /src/video_core/shader/shader_ir.h
parentgl_shader_decompiler: Make GetSwizzle constexpr (diff)
downloadyuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.tar
yuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.tar.gz
yuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.tar.bz2
yuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.tar.lz
yuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.tar.xz
yuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.tar.zst
yuzu-9c3461604cff25ef11ecb6937f904eac37090ee7.zip
Diffstat (limited to 'src/video_core/shader/shader_ir.h')
-rw-r--r--src/video_core/shader/shader_ir.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h
index 0bf124252..f99300c1c 100644
--- a/src/video_core/shader/shader_ir.h
+++ b/src/video_core/shader/shader_ir.h
@@ -181,7 +181,13 @@ enum class OperationCode {
EmitVertex, /// () -> void
EndPrimitive, /// () -> void
- YNegate, /// () -> float
+ YNegate, /// () -> float
+ LocalInvocationIdX, /// () -> uint
+ LocalInvocationIdY, /// () -> uint
+ LocalInvocationIdZ, /// () -> uint
+ WorkGroupIdX, /// () -> uint
+ WorkGroupIdY, /// () -> uint
+ WorkGroupIdZ, /// () -> uint
Amount,
};