[Mesa-dev] [PATCH 03/53] i965: get shared_size from shader_info rather than gl_shader_program
Lionel Landwerlin
lionel.g.landwerlin at intel.com
Tue Jan 3 11:34:07 UTC 2017
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
On 03/01/17 02:43, Timothy Arceri wrote:
> ---
> src/mesa/drivers/dri/i965/brw_cs.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_cs.c b/src/mesa/drivers/dri/i965/brw_cs.c
> index e4d82cf..522ddb9 100644
> --- a/src/mesa/drivers/dri/i965/brw_cs.c
> +++ b/src/mesa/drivers/dri/i965/brw_cs.c
> @@ -68,7 +68,7 @@ brw_codegen_cs_prog(struct brw_context *brw,
>
> memset(&prog_data, 0, sizeof(prog_data));
>
> - if (prog->Comp.SharedSize > 64 * 1024) {
> + if (cp->program.info.cs.shared_size > 64 * 1024) {
> prog->data->LinkStatus = false;
> const char *error_str =
> "Compute shader used more than 64KB of shared variables";
> @@ -78,7 +78,7 @@ brw_codegen_cs_prog(struct brw_context *brw,
> ralloc_free(mem_ctx);
> return false;
> } else {
> - prog_data.base.total_shared = prog->Comp.SharedSize;
> + prog_data.base.total_shared = cp->program.info.cs.shared_size;
> }
>
> assign_cs_binding_table_offsets(devinfo, prog, &cp->program, &prog_data);
More information about the mesa-dev
mailing list