From da4d3562f503ef088587179ec0d26aaecbe1872a Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Fri, 22 Jan 2016 09:28:59 +0100 Subject: [PATCH] gsdx-ogl: update status of the SSO extension AMD (proprietary) is working on it Free driver will be fixed on Mesa 11.2 (and I hope mesa 11.1.2) --- plugins/GSdx/GLLoader.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/GSdx/GLLoader.cpp b/plugins/GSdx/GLLoader.cpp index 9db3018b30..f47469cf1a 100644 --- a/plugins/GSdx/GLLoader.cpp +++ b/plugins/GSdx/GLLoader.cpp @@ -435,7 +435,10 @@ namespace GLLoader { if (ext.compare("GL_ARB_separate_shader_objects") == 0) { if (!fglrx_buggy_driver && !mesa_amd_buggy_driver && !intel_buggy_driver) found_GL_ARB_separate_shader_objects = true; else fprintf(stderr, "Buggy driver detected, GL_ARB_separate_shader_objects will be disabled\n" - "Note the extension was fixed on Mesa 11.1, you will need a manual overwrite to use it\n"); +#ifdef __linux__ + "Note the extension will be fixed on Mesa 11.2 you will need a manual overwrite to use it\n" +#endif + "AMD is working on it!\n"); } // GL4.2 if (ext.compare("GL_ARB_shading_language_420pack") == 0) found_GL_ARB_shading_language_420pack = true;