diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 8aa4a7ac95..9121a48bb4 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -2307,6 +2307,8 @@ private: ~Func() = delete; static constexpr std::string_view Add = "Add"; + static constexpr std::string_view Min = "Min"; + static constexpr std::string_view Max = "Max"; static constexpr std::string_view And = "And"; static constexpr std::string_view Or = "Or"; static constexpr std::string_view Xor = "Xor"; @@ -2457,7 +2459,21 @@ private: &GLSLDecompiler::AtomicImage, &GLSLDecompiler::AtomicImage, + &GLSLDecompiler::Atomic, &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, + &GLSLDecompiler::Atomic, &GLSLDecompiler::Branch, &GLSLDecompiler::BranchIndirect,