From c8bd9ac7894af0059d9e268fb644833173934714 Mon Sep 17 00:00:00 2001 From: llyyr Date: Sat, 7 Jun 2025 04:20:42 +0530 Subject: [PATCH] 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: 52f73db5b78a ("brw: implement read without format lowering") Part-of: --- src/intel/compiler/brw_compiler.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c index 7562bc0b493..3ab2346cb3a 100644 --- a/src/intel/compiler/brw_compiler.c +++ b/src/intel/compiler/brw_compiler.c @@ -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; }