diff options
| author | bunnei <bunneidev@gmail.com> | 2020-05-30 11:51:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-30 11:51:42 -0400 |
| commit | 058ec22787a6d3e41c3dfabd2060a1b723594374 (patch) | |
| tree | 0c9498d5e104ce52c2e50f1a0020a97516924d06 /src/video_core/shader/node.h | |
| parent | 9d9ffe0f9461ffa3b2e183b17a08953ada0ee91b (diff) | |
| parent | 32e6727daecab60d368d14619c1e04d0d7e60008 (diff) | |
Merge pull request #3982 from ReinUsesLisp/membar-cts
shader/other: Implement MEMBAR.CTS
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, }; |
