zink: stop double printing validation messages

VVL already prints its messages using configurable settings. there's no
reason for zink to unconditionally repeat them immediately after

cc: mesa-stable

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13633>
This commit is contained in:
Mike Blumenkrantz 2021-11-01 10:58:35 -04:00 committed by Marge Bot
parent 4e28962800
commit ac2af149f1

View file

@ -1375,25 +1375,21 @@ check_have_device_time(struct zink_screen *screen)
static void
zink_error(const char *msg)
{
fprintf(stderr, "zink ERR: '%s'\n", msg);
}
static void
zink_warn(const char *msg)
{
fprintf(stderr, "zink WRN: '%s'\n", msg);
}
static void
zink_info(const char *msg)
{
fprintf(stderr, "zink NFO: '%s'\n", msg);
}
static void
zink_msg(const char *msg)
{
fprintf(stderr, "zink MSG: '%s'\n", msg);
}
static VKAPI_ATTR VkBool32 VKAPI_CALL