diff options
author | Ilia Mirkin <[email protected]> | 2014-08-09 20:03:50 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-08-13 09:59:04 -0400 |
commit | 8049e5a1f68f9b852d31d91b28828391c5df754d (patch) | |
tree | f6993c32bcf3fbc0697fa63584651b544dd433ed /src/gallium | |
parent | 6f1edf3cbf0ce4cb8e95f2d8bd68c9c26d3f840c (diff) |
nvc0: increase GLSL level to 400 to enable ARB_gpu_shader5
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 2 |
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 686da329869..d372a0fc36b 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -90,7 +90,7 @@ nvc0_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_MAX_TEXTURE_BUFFER_SIZE: return 65536; case PIPE_CAP_GLSL_FEATURE_LEVEL: - return 330; + return 400; case PIPE_CAP_MAX_RENDER_TARGETS: return 8; case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS: |