From da85ab4b655a28cec33a81dae78ebe375fef9aa1 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Thu, 26 Feb 2015 23:25:14 +0000 Subject: [PATCH] radeonsi/compute: Enable PIPE_SHADER_CAP_DOUBLES v2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit v2: - Simplify ifdef Reviewed-by: Michel Dänzer --- src/gallium/drivers/radeonsi/si_pipe.c | 4 ++-- 1 file 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, -- 2.30.2