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:
@@ -1270,7 +1270,7 @@ brw_compile_tes(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 {
|
||||
brw::vec4_tes_visitor v(compiler, log_data, key, prog_data,
|
||||
nir, mem_ctx, shader_time_index);
|
||||
@@ -1284,8 +1284,7 @@ brw_compile_tes(const struct brw_compiler *compiler,
|
||||
v.dump_instructions();
|
||||
|
||||
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