diff options
| author | 2021-03-23 20:27:17 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:24 -0400 | |
| commit | 3d07cef009cf9e287744c7771c67166ef5761ce8 (patch) | |
| tree | 78f4fea18d9facb72850b4c2fe115e96b7af8f26 /src/shader_recompiler/frontend/ir/opcodes.inc | |
| parent | vk_pipeline_cache: Fix ReleaseContents order (diff) | |
| download | yuzu-3d07cef009cf9e287744c7771c67166ef5761ce8.tar.gz yuzu-3d07cef009cf9e287744c7771c67166ef5761ce8.tar.xz yuzu-3d07cef009cf9e287744c7771c67166ef5761ce8.zip | |
shader: Implement VOTE
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index bdc07b9a7..fe888b8b2 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -355,3 +355,9 @@ OPCODE(ImageSampleImplicitLod, F32x4, U32, | |||
| 355 | OPCODE(ImageSampleExplicitLod, F32x4, U32, Opaque, Opaque, Opaque, ) | 355 | OPCODE(ImageSampleExplicitLod, F32x4, U32, Opaque, Opaque, Opaque, ) |
| 356 | OPCODE(ImageSampleDrefImplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) | 356 | OPCODE(ImageSampleDrefImplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) |
| 357 | OPCODE(ImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) | 357 | OPCODE(ImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) |
| 358 | |||
| 359 | // Vote operations | ||
| 360 | OPCODE(VoteAll, U1, U1, ) | ||
| 361 | OPCODE(VoteAny, U1, U1, ) | ||
| 362 | OPCODE(VoteEqual, U1, U1, ) | ||
| 363 | OPCODE(SubgroupBallot, U32, U1, ) | ||