summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/si_pipe.c
diff options
context:
space:
mode:
authorNicolai Hähnle <[email protected]>2016-10-07 18:21:51 +0200
committerNicolai Hähnle <[email protected]>2016-11-04 10:33:50 +0100
commit84a74be9e4ce5149c7952f16a9e94e2094f4b353 (patch)
tree8d48c13886430513eed5d3fd50d33fec0319c88f /src/gallium/drivers/radeonsi/si_pipe.c
parente4b378800eff13752dcfe1f5c6b640444208d543 (diff)
radeonsi: enable GLSL 4.50
Reviewed-by: Edward O'Callaghan <[email protected]> Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pipe.c')
-rw-r--r--src/gallium/drivers/radeonsi/si_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c
index bc633bb927f..273633cdb48 100644
--- a/src/gallium/drivers/radeonsi/si_pipe.c
+++ b/src/gallium/drivers/radeonsi/si_pipe.c
@@ -438,7 +438,7 @@ static int si_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
case PIPE_CAP_GLSL_FEATURE_LEVEL:
if (si_have_tgsi_compute(sscreen))
- return 430;
+ return 450;
return HAVE_LLVM >= 0x0309 ? 420 :
HAVE_LLVM >= 0x0307 ? 410 : 330;