summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-05-30 17:51:42 +0200
committerGitHub <noreply@github.com>2020-05-30 17:51:42 +0200
commit058ec22787a6d3e41c3dfabd2060a1b723594374 (patch)
tree0c9498d5e104ce52c2e50f1a0020a97516924d06 /src/video_core/shader/node.h
parentMerge pull request #4017 from ogniK5377/xbyak (diff)
parentshader/other: Implement MEMBAR.CTS (diff)
downloadyuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.tar
yuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.tar.gz
yuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.tar.bz2
yuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.tar.lz
yuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.tar.xz
yuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.tar.zst
yuzu-058ec22787a6d3e41c3dfabd2060a1b723594374.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/node.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index c06512413..c5e5165ff 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -233,8 +233,9 @@ enum class OperationCode {
ThreadLtMask, /// () -> uint
ShuffleIndexed, /// (uint value, uint index) -> uint
- Barrier, /// () -> void
- MemoryBarrierGL, /// () -> void
+ Barrier, /// () -> void
+ MemoryBarrierGroup, /// () -> void
+ MemoryBarrierGlobal, /// () -> void
Amount,
};