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)
This commit is contained in:
Gregory Hainaut 2016-01-22 09:28:59 +01:00
parent 3f3141c186
commit da4d3562f5
1 changed files with 4 additions and 1 deletions

View File

@ -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;