mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 19:20:08 +01:00
r600g: enable GLSL 1.30 for r600 class
Full piglit run on my rv610 with no regressions. This only leaves cayman, however my cayman is resisting my attempt to get through a full piglit run. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
12bedaa24b
commit
7745cf2be4
1 changed files with 1 additions and 1 deletions
|
|
@ -877,7 +877,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws)
|
|||
pipe_mutex_init(rscreen->fences.mutex);
|
||||
|
||||
rscreen->use_surface_alloc = debug_get_bool_option("R600_SURF", TRUE);
|
||||
glsl130_default = (rscreen->chip_class == EVERGREEN || rscreen->chip_class == R700) ? TRUE : FALSE;
|
||||
glsl130_default = (rscreen->chip_class >= R600 && rscreen->chip_class <= EVERGREEN) ? TRUE : FALSE;
|
||||
rscreen->glsl_feature_level = debug_get_bool_option("R600_GLSL130", glsl130_default) ? 130 : 120;
|
||||
|
||||
return &rscreen->screen;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue