diff options
author | Caio Marcelo de Oliveira Filho <[email protected]> | 2019-03-28 01:47:10 -0700 |
---|---|---|
committer | Caio Marcelo de Oliveira Filho <[email protected]> | 2019-04-08 19:29:33 -0700 |
commit | f9b29c4a5862d7caeab89e8a3bd23f3275dbd9a6 (patch) | |
tree | 6ad210b9d5693f28e72c76a893fb3eecd7ab28db /src/gallium/auxiliary | |
parent | c9d1569689b5dc636daba941dc44f8a573e37309 (diff) |
gallium: Add PIPE_CAP_COMPUTE_SHADER_DERIVATIVES
To enable NV_compute_shader_derivatives, which allows derivatives (and
texture lookups with implicit derivatives) in compute shaders.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_screen.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_screen.c b/src/gallium/auxiliary/util/u_screen.c index 9f0be8060ee..43310f3e879 100644 --- a/src/gallium/auxiliary/util/u_screen.c +++ b/src/gallium/auxiliary/util/u_screen.c @@ -348,6 +348,9 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen, case PIPE_CAP_COMPUTE_GRID_INFO_LAST_BLOCK: return 0; + case PIPE_CAP_COMPUTE_SHADER_DERIVATIVES: + return 0; + default: unreachable("bad PIPE_CAP_*"); } |