diff options
author | Kenneth Graunke <[email protected]> | 2018-02-26 16:34:55 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-03-02 14:20:22 -0800 |
commit | 9fa95359df54f8de8219731e55d89abe816a43e8 (patch) | |
tree | 674ed3dfef5cd381adefc81636aa2a805f291b2c /src/intel/compiler/brw_vec4.h | |
parent | b04cf529f2e7bab6be22410d4be293aa5e650b03 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_vec4.h')
-rw-r--r-- | src/intel/compiler/brw_vec4.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/intel/compiler/brw_vec4.h b/src/intel/compiler/brw_vec4.h index 2e93ee2946f..39ce51c7dcf 100644 --- a/src/intel/compiler/brw_vec4.h +++ b/src/intel/compiler/brw_vec4.h @@ -45,8 +45,7 @@ brw_vec4_generate_assembly(const struct brw_compiler *compiler, void *mem_ctx, const nir_shader *nir, struct brw_vue_prog_data *prog_data, - const struct cfg_t *cfg, - unsigned *out_assembly_size); + const struct cfg_t *cfg); #ifdef __cplusplus } /* extern "C" */ |