Module: Mesa Branch: master Commit: 542bb8504991c91d50f2b0302c2d04f58003030f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=542bb8504991c91d50f2b0302c2d04f58003030f
Author: Topi Pohjolainen <[email protected]> Date: Tue Nov 29 09:56:23 2016 +0200 intel/blorp/dbg: Name blit shaders for easy recognition in dumps Blorp clears already have an equivalent. Reviewed-by: Anuj Phogat <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Signed-off-by: Topi Pohjolainen <[email protected]> --- src/intel/blorp/blorp_blit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/intel/blorp/blorp_blit.c b/src/intel/blorp/blorp_blit.c index 111f1c1..8a944fb 100644 --- a/src/intel/blorp/blorp_blit.c +++ b/src/intel/blorp/blorp_blit.c @@ -1302,6 +1302,8 @@ brw_blorp_get_blit_kernel(struct blorp_context *blorp, struct brw_wm_prog_data prog_data; nir_shader *nir = brw_blorp_build_nir_shader(blorp, mem_ctx, prog_key); + nir->info->name = ralloc_strdup(nir, "BLORP-blit"); + struct brw_wm_prog_key wm_key; brw_blorp_init_wm_prog_key(&wm_key); wm_key.tex.compressed_multisample_layout_mask = _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
