diff options
author | Nicolai Hähnle <[email protected]> | 2016-10-06 22:57:55 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-10-10 10:38:33 +0200 |
commit | 1f951216266a5f3d824d8b8da4a0cd4328d22d95 (patch) | |
tree | 79271053356c4390a1ff7a0c2ead619931a57710 /src/gallium/drivers | |
parent | 38cfd5160ad3859dfd2c4af289f860198d6f4590 (diff) |
radeonsi: make more use of si_have_tgsi_compute
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index 2aa679c61b5..66eb2e16270 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -437,9 +437,7 @@ static int si_get_param(struct pipe_screen* pscreen, enum pipe_cap param) return HAVE_LLVM >= 0x0309 ? 4 : 0; case PIPE_CAP_GLSL_FEATURE_LEVEL: - if (pscreen->get_shader_param(pscreen, PIPE_SHADER_COMPUTE, - PIPE_SHADER_CAP_SUPPORTED_IRS) & - (1 << PIPE_SHADER_IR_TGSI)) + if (si_have_tgsi_compute(sscreen)) return 430; return HAVE_LLVM >= 0x0309 ? 420 : HAVE_LLVM >= 0x0307 ? 410 : 330; |