From d58090500017dccec9e0991318881057455bc367 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Thu, 19 Dec 2013 11:36:52 +0900 Subject: [PATCH] radeonsi: Only scan pixel shaders for TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It's not relevant for other shader types. Reviewed-by: Marek Olšák --- src/gallium/drivers/radeonsi/si_state.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index 5274effbb68..8705d16d6ca 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -2246,14 +2246,17 @@ static void *si_create_shader_state(struct pipe_context *ctx, { struct si_pipe_shader_selector *sel = CALLOC_STRUCT(si_pipe_shader_selector); int r; - struct tgsi_shader_info info; - - tgsi_scan_shader(state->tokens, &info); sel->type = pipe_shader_type; sel->tokens = tgsi_dup_tokens(state->tokens); sel->so = state->stream_output; - sel->fs_write_all = info.color0_writes_all_cbufs; + + if (pipe_shader_type == PIPE_SHADER_FRAGMENT) { + struct tgsi_shader_info info; + + tgsi_scan_shader(state->tokens, &info); + sel->fs_write_all = info.color0_writes_all_cbufs; + } r = si_shader_select(ctx, sel, NULL); if (r) { -- 2.30.2