diff options
author | bunnei <bunneidev@gmail.com> | 2020-05-30 17:51:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-30 17:51:42 +0200 |
commit | 058ec22787a6d3e41c3dfabd2060a1b723594374 (patch) | |
tree | 0c9498d5e104ce52c2e50f1a0020a97516924d06 /src/video_core/shader/node.h | |
parent | Merge pull request #4017 from ogniK5377/xbyak (diff) | |
parent | shader/other: Implement MEMBAR.CTS (diff) | |
download | yuzu-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 'src/video_core/shader/node.h')
-rw-r--r-- | src/video_core/shader/node.h | 5 |
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, }; |