intel: Drop program size pointer from vec4/fs assembly getters.
These days, we're just passing a pointer to a prog_data field, which we already have access to. We can just use it directly. (In the past, it was a pointer to a separate value.) Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
This commit is contained in:
@@ -487,7 +487,7 @@ brw_compile_tcs(const struct brw_compiler *compiler,
|
||||
|
||||
g.generate_code(v.cfg, 8);
|
||||
|
||||
assembly = g.get_assembly(&prog_data->base.base.program_size);
|
||||
assembly = g.get_assembly();
|
||||
} else {
|
||||
vec4_tcs_visitor v(compiler, log_data, key, prog_data,
|
||||
nir, mem_ctx, shader_time_index, &input_vue_map);
|
||||
@@ -502,8 +502,7 @@ brw_compile_tcs(const struct brw_compiler *compiler,
|
||||
|
||||
|
||||
assembly = brw_vec4_generate_assembly(compiler, log_data, mem_ctx, nir,
|
||||
&prog_data->base, v.cfg,
|
||||
&prog_data->base.base.program_size);
|
||||
&prog_data->base, v.cfg);
|
||||
}
|
||||
|
||||
return assembly;
|
||||
|
Reference in New Issue
Block a user