diff --git a/rpcs3/Emu/RSX/GL/GLGSRender.cpp b/rpcs3/Emu/RSX/GL/GLGSRender.cpp index 96645e7b56..e32759d181 100644 --- a/rpcs3/Emu/RSX/GL/GLGSRender.cpp +++ b/rpcs3/Emu/RSX/GL/GLGSRender.cpp @@ -176,7 +176,8 @@ void GLGSRender::on_init_thread() rsx_log.warning("Texture barriers are not supported by your GPU. Feedback loops will have undefined results."); } - if (!gl_caps.ARB_bindless_texture_supported) + // NOTE: We currently aren't using the bindless version of the interpreter + if (false) //!gl_caps.ARB_bindless_texture_supported) { switch (shadermode) { diff --git a/rpcs3/Emu/RSX/GL/GLShaderInterpreter.cpp b/rpcs3/Emu/RSX/GL/GLShaderInterpreter.cpp index eb52798140..a2c63b505b 100644 --- a/rpcs3/Emu/RSX/GL/GLShaderInterpreter.cpp +++ b/rpcs3/Emu/RSX/GL/GLShaderInterpreter.cpp @@ -345,7 +345,7 @@ namespace gl std::stringstream builder; builder << "#version 450\n" - "#extension GL_ARB_bindless_texture : require\n\n"; + "//#extension GL_ARB_bindless_texture : require\n\n"; ::glsl::insert_subheader_block(builder); comp.insertConstants(builder);