mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 20:10:17 +01:00
vc4: Add disabled debug printf for describing blits.
I keep typing variants of this while debugging RCL blits for MSAA.
This commit is contained in:
parent
2792d118f1
commit
fb4877dbab
1 changed files with 10 additions and 0 deletions
|
|
@ -82,6 +82,16 @@ vc4_tile_blit(struct pipe_context *pctx, const struct pipe_blit_info *info)
|
|||
|
||||
vc4_flush(pctx);
|
||||
|
||||
if (false) {
|
||||
fprintf(stderr, "RCL blit from %d,%d to %d,%d (%d,%d)\n",
|
||||
info->src.box.x,
|
||||
info->src.box.y,
|
||||
info->dst.box.x,
|
||||
info->dst.box.y,
|
||||
info->dst.box.width,
|
||||
info->dst.box.height);
|
||||
}
|
||||
|
||||
struct pipe_surface *dst_surf =
|
||||
vc4_get_blit_surface(pctx, info->dst.resource, info->dst.level);
|
||||
struct pipe_surface *src_surf =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue