diff options
| author | 2021-02-17 00:59:28 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:22 -0400 | |
| commit | 85cce78583bc2232428a8fb39e43182877c8d5ad (patch) | |
| tree | 308f4ef2d145652e08dff1da31c72c2f00dad2e1 /src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp | |
| parent | shader: Remove old shader management (diff) | |
| download | yuzu-85cce78583bc2232428a8fb39e43182877c8d5ad.tar.gz yuzu-85cce78583bc2232428a8fb39e43182877c8d5ad.tar.xz yuzu-85cce78583bc2232428a8fb39e43182877c8d5ad.zip | |
shader: Primitive Vulkan integration
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp index 7b43c4ed8..ff2f4fb74 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp | |||
| @@ -6,83 +6,83 @@ | |||
| 6 | 6 | ||
| 7 | namespace Shader::Backend::SPIRV { | 7 | namespace Shader::Backend::SPIRV { |
| 8 | 8 | ||
| 9 | void EmitSPIRV::EmitConvertS16F16(EmitContext&) { | 9 | void EmitConvertS16F16(EmitContext&) { |
| 10 | throw NotImplementedException("SPIR-V Instruction"); | 10 | throw NotImplementedException("SPIR-V Instruction"); |
| 11 | } | 11 | } |
| 12 | 12 | ||
| 13 | void EmitSPIRV::EmitConvertS16F32(EmitContext&) { | 13 | void EmitConvertS16F32(EmitContext&) { |
| 14 | throw NotImplementedException("SPIR-V Instruction"); | 14 | throw NotImplementedException("SPIR-V Instruction"); |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | void EmitSPIRV::EmitConvertS16F64(EmitContext&) { | 17 | void EmitConvertS16F64(EmitContext&) { |
| 18 | throw NotImplementedException("SPIR-V Instruction"); | 18 | throw NotImplementedException("SPIR-V Instruction"); |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | void EmitSPIRV::EmitConvertS32F16(EmitContext&) { | 21 | void EmitConvertS32F16(EmitContext&) { |
| 22 | throw NotImplementedException("SPIR-V Instruction"); | 22 | throw NotImplementedException("SPIR-V Instruction"); |
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | void EmitSPIRV::EmitConvertS32F32(EmitContext&) { | 25 | void EmitConvertS32F32(EmitContext&) { |
| 26 | throw NotImplementedException("SPIR-V Instruction"); | 26 | throw NotImplementedException("SPIR-V Instruction"); |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | void EmitSPIRV::EmitConvertS32F64(EmitContext&) { | 29 | void EmitConvertS32F64(EmitContext&) { |
| 30 | throw NotImplementedException("SPIR-V Instruction"); | 30 | throw NotImplementedException("SPIR-V Instruction"); |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | void EmitSPIRV::EmitConvertS64F16(EmitContext&) { | 33 | void EmitConvertS64F16(EmitContext&) { |
| 34 | throw NotImplementedException("SPIR-V Instruction"); | 34 | throw NotImplementedException("SPIR-V Instruction"); |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | void EmitSPIRV::EmitConvertS64F32(EmitContext&) { | 37 | void EmitConvertS64F32(EmitContext&) { |
| 38 | throw NotImplementedException("SPIR-V Instruction"); | 38 | throw NotImplementedException("SPIR-V Instruction"); |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | void EmitSPIRV::EmitConvertS64F64(EmitContext&) { | 41 | void EmitConvertS64F64(EmitContext&) { |
| 42 | throw NotImplementedException("SPIR-V Instruction"); | 42 | throw NotImplementedException("SPIR-V Instruction"); |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | void EmitSPIRV::EmitConvertU16F16(EmitContext&) { | 45 | void EmitConvertU16F16(EmitContext&) { |
| 46 | throw NotImplementedException("SPIR-V Instruction"); | 46 | throw NotImplementedException("SPIR-V Instruction"); |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | void EmitSPIRV::EmitConvertU16F32(EmitContext&) { | 49 | void EmitConvertU16F32(EmitContext&) { |
| 50 | throw NotImplementedException("SPIR-V Instruction"); | 50 | throw NotImplementedException("SPIR-V Instruction"); |
| 51 | } | 51 | } |
| 52 | 52 | ||
| 53 | void EmitSPIRV::EmitConvertU16F64(EmitContext&) { | 53 | void EmitConvertU16F64(EmitContext&) { |
| 54 | throw NotImplementedException("SPIR-V Instruction"); | 54 | throw NotImplementedException("SPIR-V Instruction"); |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | void EmitSPIRV::EmitConvertU32F16(EmitContext&) { | 57 | void EmitConvertU32F16(EmitContext&) { |
| 58 | throw NotImplementedException("SPIR-V Instruction"); | 58 | throw NotImplementedException("SPIR-V Instruction"); |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | void EmitSPIRV::EmitConvertU32F32(EmitContext&) { | 61 | void EmitConvertU32F32(EmitContext&) { |
| 62 | throw NotImplementedException("SPIR-V Instruction"); | 62 | throw NotImplementedException("SPIR-V Instruction"); |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | void EmitSPIRV::EmitConvertU32F64(EmitContext&) { | 65 | void EmitConvertU32F64(EmitContext&) { |
| 66 | throw NotImplementedException("SPIR-V Instruction"); | 66 | throw NotImplementedException("SPIR-V Instruction"); |
| 67 | } | 67 | } |
| 68 | 68 | ||
| 69 | void EmitSPIRV::EmitConvertU64F16(EmitContext&) { | 69 | void EmitConvertU64F16(EmitContext&) { |
| 70 | throw NotImplementedException("SPIR-V Instruction"); | 70 | throw NotImplementedException("SPIR-V Instruction"); |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | void EmitSPIRV::EmitConvertU64F32(EmitContext&) { | 73 | void EmitConvertU64F32(EmitContext&) { |
| 74 | throw NotImplementedException("SPIR-V Instruction"); | 74 | throw NotImplementedException("SPIR-V Instruction"); |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | void EmitSPIRV::EmitConvertU64F64(EmitContext&) { | 77 | void EmitConvertU64F64(EmitContext&) { |
| 78 | throw NotImplementedException("SPIR-V Instruction"); | 78 | throw NotImplementedException("SPIR-V Instruction"); |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | void EmitSPIRV::EmitConvertU64U32(EmitContext&) { | 81 | void EmitConvertU64U32(EmitContext&) { |
| 82 | throw NotImplementedException("SPIR-V Instruction"); | 82 | throw NotImplementedException("SPIR-V Instruction"); |
| 83 | } | 83 | } |
| 84 | 84 | ||
| 85 | void EmitSPIRV::EmitConvertU32U64(EmitContext&) { | 85 | void EmitConvertU32U64(EmitContext&) { |
| 86 | throw NotImplementedException("SPIR-V Instruction"); | 86 | throw NotImplementedException("SPIR-V Instruction"); |
| 87 | } | 87 | } |
| 88 | 88 | ||