summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/r600_pipe.c
diff options
context:
space:
mode:
authorTimothy Arceri <tarceri@itsqueeze.com>2018-02-09 11:59:54 +1100
committerTimothy Arceri <tarceri@itsqueeze.com>2018-02-10 10:59:10 +1100
commit3af4f34e6113c3a8b4f62379127ab475de716056 (patch)
tree1d9e3f2f6ab7a351490d17506ff8ef5c3cbcced3 /src/gallium/drivers/r600/r600_pipe.c
parentce836487b80e94fd91932c0a4bfadf1d61f74ded (diff)
r600: add PIPE_SHADER_IR_NATIVE to supported shaders for cs
Acked-by: Pierre Moreau <pierre.morrow@free.fr> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c
index cc35d867092..fd8edcc9fbf 100644
--- a/src/gallium/drivers/r600/r600_pipe.c
+++ b/src/gallium/drivers/r600/r600_pipe.c
@@ -603,10 +603,14 @@ static int r600_get_shader_param(struct pipe_screen* pscreen,
} else {
return PIPE_SHADER_IR_TGSI;
}
- case PIPE_SHADER_CAP_SUPPORTED_IRS:
+ case PIPE_SHADER_CAP_SUPPORTED_IRS: {
+ int ir = 0;
+ if (shader == PIPE_SHADER_COMPUTE)
+ ir = 1 << PIPE_SHADER_IR_NATIVE;
if (rscreen->b.family >= CHIP_CEDAR)
- return (1 << PIPE_SHADER_IR_TGSI);
- return 0;
+ ir |= 1 << PIPE_SHADER_IR_TGSI;
+ return ir;
+ }
case PIPE_SHADER_CAP_TGSI_FMA_SUPPORTED:
if (rscreen->b.family == CHIP_ARUBA ||
rscreen->b.family == CHIP_CAYMAN ||