diff --git a/src/gallium/drivers/panfrost/pan_assemble.c b/src/gallium/drivers/panfrost/pan_assemble.c index 337f97bddbd..47f6c1e5312 100644 --- a/src/gallium/drivers/panfrost/pan_assemble.c +++ b/src/gallium/drivers/panfrost/pan_assemble.c @@ -41,7 +41,8 @@ panfrost_shader_compile( enum pipe_shader_ir ir_type, const void *ir, gl_shader_stage stage, - struct panfrost_shader_state *state) + struct panfrost_shader_state *state, + uint64_t *outputs_written) { struct panfrost_screen *screen = pan_screen(ctx->base.screen); uint8_t *dst; @@ -118,6 +119,9 @@ panfrost_shader_compile( state->reads_point_coord = false; state->helper_invocations = s->info.fs.needs_helper_invocations; + if (outputs_written) + *outputs_written = s->info.outputs_written; + /* Separate as primary uniform count is truncated */ state->uniform_count = program.uniform_count; diff --git a/src/gallium/drivers/panfrost/pan_compute.c b/src/gallium/drivers/panfrost/pan_compute.c index 5ca63c15929..d0b2e132295 100644 --- a/src/gallium/drivers/panfrost/pan_compute.c +++ b/src/gallium/drivers/panfrost/pan_compute.c @@ -53,7 +53,7 @@ panfrost_create_compute_state( panfrost_shader_compile(ctx, v->tripipe, cso->ir_type, cso->prog, - MESA_SHADER_COMPUTE, v); + MESA_SHADER_COMPUTE, v, NULL); diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index e6cbd057818..79995fa11c7 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -2118,12 +2118,15 @@ panfrost_bind_shader_state( /* We finally have a variant, so compile it */ if (!shader_state->compiled) { + uint64_t outputs_written = 0; + panfrost_shader_compile(ctx, shader_state->tripipe, variants->base.type, variants->base.type == PIPE_SHADER_IR_NIR ? variants->base.ir.nir : variants->base.tokens, - tgsi_processor_to_shader_stage(type), shader_state); + tgsi_processor_to_shader_stage(type), shader_state, + &outputs_written); shader_state->compiled = true; } diff --git a/src/gallium/drivers/panfrost/pan_context.h b/src/gallium/drivers/panfrost/pan_context.h index 3eac35023ce..cf9b93d68c5 100644 --- a/src/gallium/drivers/panfrost/pan_context.h +++ b/src/gallium/drivers/panfrost/pan_context.h @@ -333,7 +333,8 @@ panfrost_shader_compile( enum pipe_shader_ir ir_type, const void *ir, gl_shader_stage stage, - struct panfrost_shader_state *state); + struct panfrost_shader_state *state, + uint64_t *outputs_written); void panfrost_pack_work_groups_compute(