[Mesa-dev] [PATCH 17/70] i965: get shared_size from shader_info rather than gl_shader_program
Timothy Arceri
timothy.arceri at collabora.com
Tue Dec 20 10:37:27 UTC 2016
---
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);
--
2.9.3
More information about the mesa-dev
mailing list