zink: hide descriptor debug behind #ifdef

I've gotten a feel for this, but it's annoying to always see it spamming away

Acked-by: Emma Anholt <emma@anholt.net>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15226>
This commit is contained in:
Mike Blumenkrantz
2022-03-04 11:06:30 -05:00
committed by Marge Bot
parent e0030bc39f
commit a0bfd65d0f
@@ -1440,6 +1440,7 @@ zink_descriptors_update(struct zink_context *ctx, bool is_compute)
pdd_cached(pg)->cache_misses[h] = 0;
} else if (likely(zink_screen(ctx->base.screen)->descriptor_mode != ZINK_DESCRIPTOR_MODE_NOFALLBACK)) {
if (++pdd_cached(pg)->cache_misses[h] == MAX_CACHE_MISSES) {
#ifdef PRINT_DEBUG
const char *set_names[] = {
"UBO",
"TEXTURES",
@@ -1447,6 +1448,7 @@ zink_descriptors_update(struct zink_context *ctx, bool is_compute)
"IMAGES",
};
debug_printf("zink: descriptor cache exploded for prog %p set %s: getting lazy (not a bug, just lettin you know)\n", pg, set_names[h]);
#endif
}
}
} else