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/docs | |
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/docs')
-rw-r--r-- | src/gallium/docs/source/screen.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index a4d6a9557c0..7d3b262d240 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -503,6 +503,7 @@ The integer capabilities: cases may be a smaller number. * ``PIPE_CAP_COMPUTE_GRID_INFO_LAST_BLOCK``: Whether pipe_grid_info::last_block is implemented by the driver. See struct pipe_grid_info for more details. +* ``PIPE_CAP_COMPUTE_SHADER_DERIVATIVE``: True if the driver supports derivatives (and texture lookups with implicit derivatives) in compute shaders. .. _pipe_capf: |