diff options
| author | 2019-11-12 10:07:22 -0400 | |
|---|---|---|
| committer | 2019-11-14 11:15:27 -0400 | |
| commit | f3d1b370aa0fd614cf28f8a609b70906d40da751 (patch) | |
| tree | 028b5f4b34c30d477e6989b49540db508a8db075 /src/video_core/renderer_vulkan | |
| parent | Shader_Bytecode: Add encodings for FLO, SHF and TXD (diff) | |
| download | yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.gz yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.tar.xz yuzu-f3d1b370aa0fd614cf28f8a609b70906d40da751.zip | |
Shader_IR: Implement FLO instruction.
Diffstat (limited to 'src/video_core/renderer_vulkan')
| -rw-r--r-- | src/video_core/renderer_vulkan/vk_shader_decompiler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_shader_decompiler.cpp b/src/video_core/renderer_vulkan/vk_shader_decompiler.cpp index 2850d5b59..8378b35ac 100644 --- a/src/video_core/renderer_vulkan/vk_shader_decompiler.cpp +++ b/src/video_core/renderer_vulkan/vk_shader_decompiler.cpp | |||
| @@ -1390,6 +1390,7 @@ private: | |||
| 1390 | &SPIRVDecompiler::Quaternary<&Module::OpBitFieldInsert, Type::Int>, | 1390 | &SPIRVDecompiler::Quaternary<&Module::OpBitFieldInsert, Type::Int>, |
| 1391 | &SPIRVDecompiler::Ternary<&Module::OpBitFieldSExtract, Type::Int>, | 1391 | &SPIRVDecompiler::Ternary<&Module::OpBitFieldSExtract, Type::Int>, |
| 1392 | &SPIRVDecompiler::Unary<&Module::OpBitCount, Type::Int>, | 1392 | &SPIRVDecompiler::Unary<&Module::OpBitCount, Type::Int>, |
| 1393 | &SPIRVDecompiler::Unary<&Module::OpFindSMsb, Type::Int>, | ||
| 1393 | 1394 | ||
| 1394 | &SPIRVDecompiler::Binary<&Module::OpIAdd, Type::Uint>, | 1395 | &SPIRVDecompiler::Binary<&Module::OpIAdd, Type::Uint>, |
| 1395 | &SPIRVDecompiler::Binary<&Module::OpIMul, Type::Uint>, | 1396 | &SPIRVDecompiler::Binary<&Module::OpIMul, Type::Uint>, |
| @@ -1408,6 +1409,7 @@ private: | |||
| 1408 | &SPIRVDecompiler::Quaternary<&Module::OpBitFieldInsert, Type::Uint>, | 1409 | &SPIRVDecompiler::Quaternary<&Module::OpBitFieldInsert, Type::Uint>, |
| 1409 | &SPIRVDecompiler::Ternary<&Module::OpBitFieldUExtract, Type::Uint>, | 1410 | &SPIRVDecompiler::Ternary<&Module::OpBitFieldUExtract, Type::Uint>, |
| 1410 | &SPIRVDecompiler::Unary<&Module::OpBitCount, Type::Uint>, | 1411 | &SPIRVDecompiler::Unary<&Module::OpBitCount, Type::Uint>, |
| 1412 | &SPIRVDecompiler::Unary<&Module::OpFindUMsb, Type::Uint>, | ||
| 1411 | 1413 | ||
| 1412 | &SPIRVDecompiler::Binary<&Module::OpFAdd, Type::HalfFloat>, | 1414 | &SPIRVDecompiler::Binary<&Module::OpFAdd, Type::HalfFloat>, |
| 1413 | &SPIRVDecompiler::Binary<&Module::OpFMul, Type::HalfFloat>, | 1415 | &SPIRVDecompiler::Binary<&Module::OpFMul, Type::HalfFloat>, |