summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-12-11 20:24:39 +0100
committerGitHub <noreply@github.com>2019-12-11 20:24:39 +0100
commit1a66cde1753f4f0349989f3b9093b359e3e07136 (patch)
tree47aa17b54178b1aa150962401903d5a7dd659f83 /src/video_core/shader/node.h
parentKernel: Correct behavior of Address Arbiter threads. (#3165) (diff)
parentshader: Implement MEMBAR.GL (diff)
downloadyuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.tar
yuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.tar.gz
yuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.tar.bz2
yuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.tar.lz
yuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.tar.xz
yuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.tar.zst
yuzu-1a66cde1753f4f0349989f3b9093b359e3e07136.zip
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index 1a4d28ae9..abd40f582 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -189,6 +189,8 @@ enum class OperationCode {
ThreadId, /// () -> uint
ShuffleIndexed, /// (uint value, uint index) -> uint
+ MemoryBarrierGL, /// () -> void
+
Amount,
};