From: Tom Stellard Date: Sat, 21 Mar 2015 00:27:16 +0000 (+0000) Subject: radeonsi/compute: Default to the same PIPE_SHADER_CAP values as other shader types v2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c53d2acbb8b6fa48e91d7edaa81d95e19c2c40d;p=mesa.git radeonsi/compute: Default to the same PIPE_SHADER_CAP values as other shader types v2 v2: - Fix typo Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index 0eada72ad5a..ae96b6bab1d 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -398,8 +398,12 @@ static int si_get_shader_param(struct pipe_screen* pscreen, unsigned shader, enu return max_const_buffer_size; } default: - return 0; + /* If compute shaders don't require a special value + * for this cap, we can return the same value we + * do for other shader types. */ + break; } + break; default: /* TODO: support tessellation */ return 0;