diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-26 06:17:56 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-01-15 21:54:53 +0100 |
commit | 52223313b10af4c76b516d6ead247a1a201a71d8 (patch) | |
tree | e9fb7a948605622b7702d1c4aebef5838253850e /src/video_core/renderer_opengl | |
parent | gl_shader_decompiler: Use rasterizer's UBO size limit (diff) | |
download | yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.gz yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.bz2 yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.lz yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.xz yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.tar.zst yuzu-52223313b10af4c76b516d6ead247a1a201a71d8.zip |
Diffstat (limited to 'src/video_core/renderer_opengl')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 7d7abe703..ecd27db07 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -1204,12 +1204,6 @@ private: return expr; } - std::string Ipa(Operation operation) { - const auto& attribute = operation[0]; - // TODO(Rodrigo): Special IPA attribute interactions - return Visit(attribute); - } - std::string Bra(Operation operation) { const auto target = std::get<ImmediateNode>(*operation[0]); code.AddLine(fmt::format("jmp_to = 0x{:x}u;", target.GetValue())); @@ -1448,8 +1442,6 @@ private: &GLSLDecompiler::F4TextureQueryLod, &GLSLDecompiler::F4TexelFetch, - &GLSLDecompiler::Ipa, - &GLSLDecompiler::Bra, &GLSLDecompiler::PushFlowStack, // Ssy &GLSLDecompiler::PushFlowStack, // Brk |