https://bugs.freedesktop.org/show_bug.cgi?id=52174
Bug #: 52174 Summary: radeonsi enable GLSL 1.3 by default Classification: Unclassified Product: Mesa Version: git Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: medium Component: Drivers/DRI/R600 AssignedTo: dri-devel@lists.freedesktop.org ReportedBy: neotheuser@ymail.com
GLSL 1.3 has now been static to the r600g driver. Shouldn't this be done for radeonsi as well?
case PIPE_CAP_GLSL_FEATURE_LEVEL: return debug_get_bool_option("R600_GLSL130", FALSE) ? 130 : 120;
to
case PIPE_CAP_GLSL_FEATURE_LEVEL: return 130;
Thanks!
https://bugs.freedesktop.org/show_bug.cgi?id=52174
Alec Ari neotheuser@ymail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|Drivers/DRI/R600 |Drivers/Gallium/r600
https://bugs.freedesktop.org/show_bug.cgi?id=52174
Michel Dänzer michel@daenzer.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|Drivers/Gallium/r600 |Drivers/Gallium/radeonsi
https://bugs.freedesktop.org/show_bug.cgi?id=52174
Michel Dänzer michel@daenzer.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED
--- Comment #1 from Michel Dänzer michel@daenzer.net --- It wasn't actually ready yet, but now it is. :)
commit cdad129f9cda038fb29cde94645d2fcab7207c50 Author: Michel Dänzer michel.daenzer@amd.com Date: Fri May 24 16:49:42 2013 +0200
radeonsi: Enable GLSL 1.30
dri-devel@lists.freedesktop.org