brw: don't unconditionally print message on instance creation

This would cause Mesa to print this message even if an Intel GPU is just
being enumerated by a Vulkan application. For example, `vulkaninfo
--summary`.

Fixes: 52f73db5b7 ("brw: implement read without format lowering")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35396>
This commit is contained in:
llyyr 2025-06-07 04:20:42 +05:30 committed by Marge Bot
parent 16dbcd9b04
commit c8bd9ac789

View file

@ -217,8 +217,6 @@ brw_compiler_create(void *mem_ctx, const struct intel_device_info *devinfo)
(devinfo->verx10 >= 110 && devinfo->verx10 <= 120 &&
compiler->num_lowered_storage_formats == 3) ||
devinfo->verx10 == 90);
fprintf(stderr, "num_lowered_storage_formats=%i\n",
compiler->num_lowered_storage_formats);
return compiler;
}