summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2016-05-28 05:51:12 +1000
committerDave Airlie <airlied@redhat.com>2016-05-28 05:52:13 +1000
commit0438bc76e2467961a18456c676e5c92274333de4 (patch)
tree4e5892c423963ff0765bdb24e71c201063ee23e3
parent43550f25ed9595788c9b8b87da5cc48e83c7bce4 (diff)
nouveau: enable GL 4.3 on kepler/fermi
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--src/gallium/drivers/nouveau/nvc0/nvc0_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
index 4c47503133b..65412414c3d 100644
--- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
+++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
@@ -121,7 +121,7 @@ nvc0_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
return 128 * 1024 * 1024;
case PIPE_CAP_GLSL_FEATURE_LEVEL:
if (class_3d <= NVF0_3D_CLASS)
- return 420;
+ return 430;
return 410;
case PIPE_CAP_MAX_RENDER_TARGETS:
return 8;