From b6f99cf37802b2c4cf5d20dc097a6c75ac5143fb Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 8 Mar 2022 10:49:02 -0500 Subject: [PATCH] zink: switch warn_missing_feature to mesa_logw Reviewed-by: Dave Airlie Part-of: --- src/gallium/drivers/zink/zink_screen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/zink/zink_screen.h b/src/gallium/drivers/zink/zink_screen.h index 2a96b01cf0b..4d356235536 100644 --- a/src/gallium/drivers/zink/zink_screen.h +++ b/src/gallium/drivers/zink/zink_screen.h @@ -286,7 +286,7 @@ zink_stub_function_not_loaded(void); do { \ static bool warned = false; \ if (!warned) { \ - fprintf(stderr, "WARNING: Incorrect rendering will happen, " \ + mesa_logw("WARNING: Incorrect rendering will happen, " \ "because the Vulkan device doesn't support " \ "the %s feature\n", feat); \ warned = true; \