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!