diff options
| author | 2019-08-29 12:58:10 -0400 | |
|---|---|---|
| committer | 2019-08-29 12:58:10 -0400 | |
| commit | 680ab6132726946435081df6c4f2ef01ec2f1691 (patch) | |
| tree | 230bc98a8bdd67a95c5abde32294655469845b3b /src/video_core/shader/node.h | |
| parent | Merge pull request #2748 from FernandoS27/align-memory (diff) | |
| parent | shader_ir: Implement VOTE (diff) | |
| download | yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.gz yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.xz yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.zip | |
Merge pull request #2786 from ReinUsesLisp/vote
shader_ir: Implement VOTE on Nvidia drivers
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 5f0852364..5db9313c4 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h | |||
| @@ -168,6 +168,11 @@ enum class OperationCode { | |||
| 168 | WorkGroupIdY, /// () -> uint | 168 | WorkGroupIdY, /// () -> uint |
| 169 | WorkGroupIdZ, /// () -> uint | 169 | WorkGroupIdZ, /// () -> uint |
| 170 | 170 | ||
| 171 | BallotThread, /// (bool) -> uint | ||
| 172 | VoteAll, /// (bool) -> bool | ||
| 173 | VoteAny, /// (bool) -> bool | ||
| 174 | VoteEqual, /// (bool) -> bool | ||
| 175 | |||
| 171 | Amount, | 176 | Amount, |
| 172 | }; | 177 | }; |
| 173 | 178 | ||