Module: Mesa Branch: master Commit: 84a74be9e4ce5149c7952f16a9e94e2094f4b353 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=84a74be9e4ce5149c7952f16a9e94e2094f4b353
Author: Nicolai Hähnle <[email protected]> Date: Fri Oct 7 18:21:51 2016 +0200 radeonsi: enable GLSL 4.50 Reviewed-by: Edward O'Callaghan <[email protected]> Reviewed-by: Dave Airlie <[email protected]> --- src/gallium/drivers/radeonsi/si_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index bc633bb..273633c 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
