From 841df74010609fea8f137982cb0145c12638150d Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Thu, 28 Jan 2016 21:18:24 +0100 Subject: [PATCH] gsdx: add info to get a working driver --- plugins/GSdx/GLLoader.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx/GLLoader.cpp b/plugins/GSdx/GLLoader.cpp index 4f243376ed..16927cb993 100644 --- a/plugins/GSdx/GLLoader.cpp +++ b/plugins/GSdx/GLLoader.cpp @@ -436,9 +436,10 @@ namespace GLLoader { 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" #ifdef __linux__ - "Note the extension will be fixed on Mesa 11.2 you will need a manual overwrite to use it\n" + "Note the extension will be fixed on Mesa 11.2 or 11.1.2.\n" #endif - "AMD is working on it!\n"); + "AMD proprietary driver => https://community.amd.com/thread/194895\n" + "If you want to try it, you can set the variable override_GL_ARB_separate_shader_objects to 1 in the ini file\n"); } // GL4.2 if (ext.compare("GL_ARB_shading_language_420pack") == 0) found_GL_ARB_shading_language_420pack = true;