diff options
author | Jan Vesely <[email protected]> | 2017-09-20 16:01:27 -0400 |
---|---|---|
committer | Jan Vesely <[email protected]> | 2017-09-21 11:18:17 -0400 |
commit | 9c871506182f0489813aedd214dde447be78cc4f (patch) | |
tree | 6a47f4d1e78e0e98071027b4ac8177f838d2bdcd /src/gallium/drivers/nouveau/nv50 | |
parent | df8767a14e3eae4dcb8241b731b34e9379706795 (diff) |
gallium: Add PIPE_SHADER_CAP_INT64_ATOMICS
Denotes availability of 64bit int atomic instructions
Signed-off-by: Jan Vesely <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nv50')
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_screen.c b/src/gallium/drivers/nouveau/nv50/nv50_screen.c index 60b60373960..706e8d369ba 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_screen.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_screen.c @@ -345,6 +345,7 @@ nv50_screen_get_shader_param(struct pipe_screen *pscreen, return 1; case PIPE_SHADER_CAP_TGSI_SQRT_SUPPORTED: return 1; + case PIPE_SHADER_CAP_INT64_ATOMICS: case PIPE_SHADER_CAP_FP16: case PIPE_SHADER_CAP_SUBROUTINES: return 0; /* please inline, or provide function declarations */ |