diff options
author | Dave Airlie <[email protected]> | 2017-12-18 21:38:09 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-12-18 21:41:46 +0000 |
commit | 6ab346c4d9ce3d8f0c4d5ba347752fd1ad9337d9 (patch) | |
tree | 9dcf3276b35acdec4585b79aa78fe9333f022628 /src/gallium | |
parent | 42bc25a79ca87a1fc3420fa8e8edb1667f0cbd1b (diff) |
r600: only reported tgsi ir compute support on evergreen+
This fixes a crash on r600/r700.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index fa25536a2ff..29cffe9c7e2 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -602,7 +602,9 @@ static int r600_get_shader_param(struct pipe_screen* pscreen, return PIPE_SHADER_IR_TGSI; } case PIPE_SHADER_CAP_SUPPORTED_IRS: - return (1 << PIPE_SHADER_IR_TGSI); + if (rscreen->b.family >= CHIP_CEDAR) + return (1 << PIPE_SHADER_IR_TGSI); + return 0; case PIPE_SHADER_CAP_TGSI_FMA_SUPPORTED: if (rscreen->b.family == CHIP_ARUBA || rscreen->b.family == CHIP_CAYMAN || |