Mesa (main): zink: make unsupported blit formats an error

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Apr 22 01:11:06 UTC 2022


Module: Mesa
Branch: main
Commit: 710ad9cd6b27ec7bc7144b27d4672fa50c25edff
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=710ad9cd6b27ec7bc7144b27d4672fa50c25edff

Author: Mike Blumenkrantz <michael.blumenkrantz at gmail.com>
Date:   Thu Apr 14 08:13:09 2022 -0400

zink: make unsupported blit formats an error

Reviewed-by: Dave Airlie <airlied at redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16071>

---

 src/gallium/drivers/zink/zink_blit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/zink/zink_blit.c b/src/gallium/drivers/zink/zink_blit.c
index 270a09afdf2..b3a0e6d65a1 100644
--- a/src/gallium/drivers/zink/zink_blit.c
+++ b/src/gallium/drivers/zink/zink_blit.c
@@ -317,7 +317,7 @@ zink_blit(struct pipe_context *pctx,
 
 
    if (!util_blitter_is_blit_supported(ctx->blitter, info)) {
-      debug_printf("blit unsupported %s -> %s\n",
+      mesa_loge("ZINK: blit unsupported %s -> %s",
               util_format_short_name(info->src.resource->format),
               util_format_short_name(info->dst.resource->format));
       goto end;



More information about the mesa-commit mailing list