Module: Mesa Branch: master Commit: 8c406f0b4d904867058deb4e19acd69fd2c38c91 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8c406f0b4d904867058deb4e19acd69fd2c38c91
Author: Samuel Pitoiset <[email protected]> Date: Thu May 24 13:09:11 2018 +0200 radv: remove unused parameter in radv_dump_annotated_shader() Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/amd/vulkan/radv_debug.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/amd/vulkan/radv_debug.c b/src/amd/vulkan/radv_debug.c index e55489d71d..72c7c39fcb 100644 --- a/src/amd/vulkan/radv_debug.c +++ b/src/amd/vulkan/radv_debug.c @@ -369,11 +369,9 @@ static void si_add_split_disasm(const char *disasm, } static void -radv_dump_annotated_shader(struct radv_pipeline *pipeline, - struct radv_shader_variant *shader, - gl_shader_stage stage, - struct ac_wave_info *waves, unsigned num_waves, - FILE *f) +radv_dump_annotated_shader(struct radv_shader_variant *shader, + gl_shader_stage stage, struct ac_wave_info *waves, + unsigned num_waves, FILE *f) { uint64_t start_addr, end_addr; unsigned i; @@ -459,12 +457,12 @@ radv_dump_annotated_shaders(struct radv_pipeline *pipeline, while (mask) { int stage = u_bit_scan(&mask); - radv_dump_annotated_shader(pipeline, pipeline->shaders[stage], + radv_dump_annotated_shader(pipeline->shaders[stage], stage, waves, num_waves, f); } - radv_dump_annotated_shader(pipeline, compute_shader, - MESA_SHADER_COMPUTE, waves, num_waves, f); + radv_dump_annotated_shader(compute_shader, MESA_SHADER_COMPUTE, waves, + num_waves, f); /* Print waves executing shaders that are not currently bound. */ unsigned i; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
