diff options
| author | 2021-03-26 20:51:05 +0100 | |
|---|---|---|
| committer | 2021-07-22 21:51:25 -0400 | |
| commit | dc1a9a3bed2aa9b0851f07976b0c687172aa3edc (patch) | |
| tree | 8bfc0b3afc76b1b9a6100dfe8fb60b013927932b /src/shader_recompiler/frontend/ir/opcodes.inc | |
| parent | spirv: Add fixed pipeline point size (diff) | |
| download | yuzu-dc1a9a3bed2aa9b0851f07976b0c687172aa3edc.tar.gz yuzu-dc1a9a3bed2aa9b0851f07976b0c687172aa3edc.tar.xz yuzu-dc1a9a3bed2aa9b0851f07976b0c687172aa3edc.zip | |
shader: Implement TLD
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index 717aa71ca..302b8471d 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -378,7 +378,7 @@ OPCODE(BindlessImageSampleDrefImplicitLod, F32, U32, | |||
| 378 | OPCODE(BindlessImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) | 378 | OPCODE(BindlessImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) |
| 379 | OPCODE(BindlessImageGather, F32x4, U32, Opaque, Opaque, Opaque, ) | 379 | OPCODE(BindlessImageGather, F32x4, U32, Opaque, Opaque, Opaque, ) |
| 380 | OPCODE(BindlessImageGatherDref, F32x4, U32, Opaque, Opaque, Opaque, F32, ) | 380 | OPCODE(BindlessImageGatherDref, F32x4, U32, Opaque, Opaque, Opaque, F32, ) |
| 381 | OPCODE(BindlessImageFetch, F32x4, U32, Opaque, U32, U32, ) | 381 | OPCODE(BindlessImageFetch, F32x4, U32, Opaque, Opaque, Opaque, Opaque, ) |
| 382 | OPCODE(BindlessImageQueryDimensions, U32x4, U32, U32, ) | 382 | OPCODE(BindlessImageQueryDimensions, U32x4, U32, U32, ) |
| 383 | 383 | ||
| 384 | OPCODE(BoundImageSampleImplicitLod, F32x4, U32, Opaque, Opaque, Opaque, ) | 384 | OPCODE(BoundImageSampleImplicitLod, F32x4, U32, Opaque, Opaque, Opaque, ) |
| @@ -387,7 +387,7 @@ OPCODE(BoundImageSampleDrefImplicitLod, F32, U32, | |||
| 387 | OPCODE(BoundImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) | 387 | OPCODE(BoundImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) |
| 388 | OPCODE(BoundImageGather, F32x4, U32, Opaque, Opaque, Opaque, ) | 388 | OPCODE(BoundImageGather, F32x4, U32, Opaque, Opaque, Opaque, ) |
| 389 | OPCODE(BoundImageGatherDref, F32x4, U32, Opaque, Opaque, Opaque, F32, ) | 389 | OPCODE(BoundImageGatherDref, F32x4, U32, Opaque, Opaque, Opaque, F32, ) |
| 390 | OPCODE(BoundImageFetch, F32x4, U32, Opaque, U32, U32, ) | 390 | OPCODE(BoundImageFetch, F32x4, U32, Opaque, Opaque, Opaque, Opaque, ) |
| 391 | OPCODE(BoundImageQueryDimensions, U32x4, U32, U32, ) | 391 | OPCODE(BoundImageQueryDimensions, U32x4, U32, U32, ) |
| 392 | 392 | ||
| 393 | OPCODE(ImageSampleImplicitLod, F32x4, U32, Opaque, Opaque, Opaque, ) | 393 | OPCODE(ImageSampleImplicitLod, F32x4, U32, Opaque, Opaque, Opaque, ) |
| @@ -396,7 +396,7 @@ OPCODE(ImageSampleDrefImplicitLod, F32, U32, | |||
| 396 | OPCODE(ImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) | 396 | OPCODE(ImageSampleDrefExplicitLod, F32, U32, Opaque, F32, Opaque, Opaque, ) |
| 397 | OPCODE(ImageGather, F32x4, U32, Opaque, Opaque, Opaque, ) | 397 | OPCODE(ImageGather, F32x4, U32, Opaque, Opaque, Opaque, ) |
| 398 | OPCODE(ImageGatherDref, F32x4, U32, Opaque, Opaque, Opaque, F32, ) | 398 | OPCODE(ImageGatherDref, F32x4, U32, Opaque, Opaque, Opaque, F32, ) |
| 399 | OPCODE(ImageFetch, F32x4, U32, Opaque, U32, U32, ) | 399 | OPCODE(ImageFetch, F32x4, U32, Opaque, Opaque, Opaque, Opaque, ) |
| 400 | OPCODE(ImageQueryDimensions, U32x4, U32, U32, ) | 400 | OPCODE(ImageQueryDimensions, U32x4, U32, U32, ) |
| 401 | 401 | ||
| 402 | // Warp operations | 402 | // Warp operations |