diff options
author | Tom Stellard <[email protected]> | 2015-02-26 23:25:14 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2015-02-27 14:57:52 +0000 |
commit | da85ab4b655a28cec33a81dae78ebe375fef9aa1 (patch) | |
tree | 8e5db1127de09ce372d8b516bc464781137957a1 | |
parent | 75514555aa0061299034bf15b5df31ab6746c0e5 (diff) |
radeonsi/compute: Enable PIPE_SHADER_CAP_DOUBLES v2
v2:
- Simplify ifdef
Reviewed-by: Michel Dänzer <[email protected]>
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index f8fd3fa767e..f1a53883f2a 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -363,8 +363,8 @@ static int si_get_shader_param(struct pipe_screen* pscreen, unsigned shader, enu return PIPE_SHADER_IR_NATIVE; #endif case PIPE_SHADER_CAP_DOUBLES: - return 0; /* XXX: Enable doubles once the compiler can - handle them. */ + return HAVE_LLVM >= 0x0307; + case PIPE_SHADER_CAP_MAX_CONST_BUFFER_SIZE: { uint64_t max_const_buffer_size; pscreen->get_compute_param(pscreen, |