summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2012-12-06 16:14:25 +1000
committerDave Airlie <[email protected]>2012-12-08 13:32:38 +1000
commit535e248c5fc88fb3fa56d0ce9204e6a6427802f6 (patch)
tree681575ee9326ea1039181caf458f40581d9b3fbd /src/gallium/drivers/softpipe
parenta6256f1e678cf72a2c0cb407a2118afa92bd1b20 (diff)
softpipe: enable GLSL 1.40
This enables GLSL 1.40 advertising by softpipe. Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r--src/gallium/drivers/softpipe/sp_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index 1e752fbc8c8..909fa1c98b2 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -147,7 +147,7 @@ softpipe_get_param(struct pipe_screen *screen, enum pipe_cap param)
case PIPE_CAP_MIXED_COLORBUFFER_FORMATS:
return 0;
case PIPE_CAP_GLSL_FEATURE_LEVEL:
- return 130;
+ return 140;
case PIPE_CAP_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION:
return 0;
case PIPE_CAP_COMPUTE: