diff options
author | Ilia Mirkin <[email protected]> | 2018-08-26 17:47:12 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2018-08-29 20:51:40 -0400 |
commit | 3e04c67950fe3edcabedc72516de63c5c20510e2 (patch) | |
tree | 9fa37883b99e12bb16a58c30119386433cdcf8d7 /src/gallium/drivers/nouveau | |
parent | a608e5cc9fdaf459757c98d09861dd3d2f2f0f9f (diff) |
nv50: bump compat glsl level to same as core
Passes the compat piglits. I'm sure that there will be odd issues that
aren't caught by them, but at least it should basically work.
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_screen.c b/src/gallium/drivers/nouveau/nv50/nv50_screen.c index 16c334e9be4..0007a2b9576 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_screen.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_screen.c @@ -111,7 +111,7 @@ nv50_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_GLSL_FEATURE_LEVEL: return 330; case PIPE_CAP_GLSL_FEATURE_LEVEL_COMPATIBILITY: - return 140; + return 330; case PIPE_CAP_MAX_RENDER_TARGETS: return 8; case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS: |