From: Eric Anholt Date: Mon, 4 Aug 2014 23:38:07 +0000 (-0700) Subject: vc4: Stash some debug code for looking at what BOs are at what hindex. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f034055f96b9dd7b1c54e8fa5422d22c26f2269;p=mesa.git vc4: Stash some debug code for looking at what BOs are at what hindex. When you're debugging validation, it's nice to know what the BOs are for. --- diff --git a/src/gallium/drivers/vc4/vc4_bufmgr.c b/src/gallium/drivers/vc4/vc4_bufmgr.c index faec853ec8d..a87cdfa9fd4 100644 --- a/src/gallium/drivers/vc4/vc4_bufmgr.c +++ b/src/gallium/drivers/vc4/vc4_bufmgr.c @@ -106,6 +106,7 @@ vc4_bo_open_name(struct vc4_screen *screen, uint32_t name, bo->screen = screen; bo->handle = o.handle; bo->size = o.size; + bo->name = "winsys"; #ifdef USE_VC4_SIMULATOR vc4_bo_map(bo); diff --git a/src/gallium/drivers/vc4/vc4_simulator.c b/src/gallium/drivers/vc4/vc4_simulator.c index 8038fee5109..fc3d554a3ec 100644 --- a/src/gallium/drivers/vc4/vc4_simulator.c +++ b/src/gallium/drivers/vc4/vc4_simulator.c @@ -75,6 +75,10 @@ vc4_simulator_pin_bos(struct drm_device *dev, struct exec_info *exec) struct vc4_bo *bo = bos[i]; struct drm_gem_cma_object *obj = vc4_wrap_bo_with_cma(dev, bo); +#if 0 + fprintf(stderr, "bo hindex %d: %s\n", i, bo->name); +#endif + vc4_bo_map(bo); memcpy(obj->vaddr, bo->map, bo->size);