[Mesa-dev] [PATCH 1/4] i965: Print number of multisamples in INTEL_DEBUG=blorp output.
Dylan Baker
baker.dylan.c at gmail.com
Fri Mar 21 13:45:48 PDT 2014
On Friday, March 21, 2014 04:47:29 Kenneth Graunke wrote:
> This lets us distinguish MSAA resolves from other ordinary blits.
>
> Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
> Cc: Dylan Baker <baker.dylan.c at gmail.com>
> Cc: Keith Packard <keithp at keithp.com>
> Cc: Eric Anholt <eric at anholt.net>
> ---
> src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp
> b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp index 22a4a07..9e80935
> 100644
> --- a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp
> @@ -151,12 +151,12 @@ brw_blorp_blit_miptrees(struct brw_context
*brw,
> intel_miptree_slice_resolve_depth(brw, src_mt, src_level, src_layer);
> intel_miptree_slice_resolve_depth(brw, dst_mt, dst_level, dst_layer);
>
> - DBG("%s from %s mt %p %d %d (%f,%f) (%f,%f)"
> - "to %s mt %p %d %d (%f,%f) (%f,%f) (flip %d,%d)\n",
> + DBG("%s from %dx %s mt %p %d %d (%f,%f) (%f,%f)"
> + "to %dx %s mt %p %d %d (%f,%f) (%f,%f) (flip %d,%d)\n",
> __FUNCTION__,
> - _mesa_get_format_name(src_mt->format), src_mt,
> + src_mt->num_samples, _mesa_get_format_name(src_mt->format),
src_mt,
> src_level, src_layer, src_x0, src_y0, src_x1, src_y1,
> - _mesa_get_format_name(dst_mt->format), dst_mt,
> + dst_mt->num_samples, _mesa_get_format_name(dst_mt->format),
dst_mt,
> dst_level, dst_layer, dst_x0, dst_y0, dst_x1, dst_y1,
> mirror_x, mirror_y);
For the series:
Tested-by: Dylan Baker <baker.dylan.c at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140321/4b80768f/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 490 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140321/4b80768f/attachment-0001.sig>
More information about the mesa-dev
mailing list