diff options
author | Michel Dänzer <[email protected]> | 2013-05-24 16:49:42 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2013-05-28 11:20:53 +0200 |
commit | cdad129f9cda038fb29cde94645d2fcab7207c50 (patch) | |
tree | c5b3d14df71ee414fa032b96f721d8e2b4fabc3d /src/gallium | |
parent | 0495adbac5361d95a1ec1b0d37d78532359f8170 (diff) |
radeonsi: Enable GLSL 1.30
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/radeonsi_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/radeonsi_pipe.c b/src/gallium/drivers/radeonsi/radeonsi_pipe.c index b988e72c2e8..30254a8e1aa 100644 --- a/src/gallium/drivers/radeonsi/radeonsi_pipe.c +++ b/src/gallium/drivers/radeonsi/radeonsi_pipe.c @@ -364,7 +364,7 @@ static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param) return 256; case PIPE_CAP_GLSL_FEATURE_LEVEL: - return debug_get_bool_option("R600_GLSL130", FALSE) ? 130 : 120; + return 130; /* Unsupported features. */ case PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT: |