diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-05-15 06:43:44 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-05-22 04:18:37 +0200 |
commit | e2b67a868b7191237374226218756c1a62fabd4e (patch) | |
tree | 0ae75b1a89a5cdec2abf2433b20558f4aaab589b /src/video_core/shader/node.h | |
parent | Merge pull request #3926 from ogniK5377/keyboard-states (diff) | |
download | yuzu-e2b67a868b7191237374226218756c1a62fabd4e.tar yuzu-e2b67a868b7191237374226218756c1a62fabd4e.tar.gz yuzu-e2b67a868b7191237374226218756c1a62fabd4e.tar.bz2 yuzu-e2b67a868b7191237374226218756c1a62fabd4e.tar.lz yuzu-e2b67a868b7191237374226218756c1a62fabd4e.tar.xz yuzu-e2b67a868b7191237374226218756c1a62fabd4e.tar.zst yuzu-e2b67a868b7191237374226218756c1a62fabd4e.zip |
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r-- | src/video_core/shader/node.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index f75b62240..cce8aeebe 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h @@ -226,6 +226,11 @@ enum class OperationCode { VoteEqual, /// (bool) -> bool ThreadId, /// () -> uint + ThreadEqMask, /// () -> uint + ThreadGeMask, /// () -> uint + ThreadGtMask, /// () -> uint + ThreadLeMask, /// () -> uint + ThreadLtMask, /// () -> uint ShuffleIndexed, /// (uint value, uint index) -> uint MemoryBarrierGL, /// () -> void |