summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-05-26 20:40:13 +0200
committerGitHub <noreply@github.com>2020-05-26 20:40:13 +0200
commit508242c2671713239c66461125696db1a69bd163 (patch)
tree07d495dd12545f1860a83f099c288b9637e76e67 /src/video_core/shader/node.h
parentMerge pull request #3980 from ReinUsesLisp/red-op (diff)
parentshader/other: Implement BAR.SYNC 0x0 (diff)
downloadyuzu-508242c2671713239c66461125696db1a69bd163.tar
yuzu-508242c2671713239c66461125696db1a69bd163.tar.gz
yuzu-508242c2671713239c66461125696db1a69bd163.tar.bz2
yuzu-508242c2671713239c66461125696db1a69bd163.tar.lz
yuzu-508242c2671713239c66461125696db1a69bd163.tar.xz
yuzu-508242c2671713239c66461125696db1a69bd163.tar.zst
yuzu-508242c2671713239c66461125696db1a69bd163.zip
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index cce8aeebe..c06512413 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -233,6 +233,7 @@ enum class OperationCode {
ThreadLtMask, /// () -> uint
ShuffleIndexed, /// (uint value, uint index) -> uint
+ Barrier, /// () -> void
MemoryBarrierGL, /// () -> void
Amount,