summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/freedreno/a6xx/fd6_resource.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/freedreno/a6xx/fd6_resource.c')
-rw-r--r--src/gallium/drivers/freedreno/a6xx/fd6_resource.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_resource.c b/src/gallium/drivers/freedreno/a6xx/fd6_resource.c
index 2b695e6969d..4f5ab902662 100644
--- a/src/gallium/drivers/freedreno/a6xx/fd6_resource.c
+++ b/src/gallium/drivers/freedreno/a6xx/fd6_resource.c
@@ -111,17 +111,16 @@ setup_slices(struct fd_resource *rsc, uint32_t alignment, enum pipe_format forma
slice->size0 = align(blocks * rsc->cpp, alignment);
}
+ size += slice->size0 * depth * layers_in_level;
+
#if 0
- debug_printf("%s: %ux%ux%u@%u: %2u: stride=%4u, size=%7u, aligned_height=%3u\n",
+ debug_printf("%s: %ux%ux%u@%u:\t%2u: stride=%4u, size=%6u,%7u, aligned_height=%3u, blocks=%u\n",
util_format_name(prsc->format),
- prsc->width0, prsc->height0, prsc->depth0, rsc->cpp,
+ width, height, depth, rsc->cpp,
level, slice->pitch * rsc->cpp,
- slice->size0 * depth * layers_in_level,
- aligned_height);
+ slice->size0, size, aligned_height, blocks);
#endif
- size += slice->size0 * depth * layers_in_level;
-
width = u_minify(width, 1);
height = u_minify(height, 1);
depth = u_minify(depth, 1);