From 89f3ee4cb2e71dfe13812bae7d754bbe79596bcb Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Sun, 29 Jun 2025 08:57:47 +0300 Subject: [PATCH] brw: remove debug printf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: fcf4401824 ("brw: handle wa_18019110168 with independent shader compilation") Signed-off-by: Lionel Landwerlin Reviewed-by: Tapani Pälli Part-of: --- src/intel/compiler/brw_compile_mesh.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/intel/compiler/brw_compile_mesh.cpp b/src/intel/compiler/brw_compile_mesh.cpp index 1592ca00f0b..cd7815f86f0 100644 --- a/src/intel/compiler/brw_compile_mesh.cpp +++ b/src/intel/compiler/brw_compile_mesh.cpp @@ -1330,10 +1330,6 @@ brw_compile_mesh(const struct brw_compiler *compiler, g.add_const_data(const_data, nir->constant_data_size + sizeof(remap_table)); prog_data->wa_18019110168_mapping_offset = prog_data->base.base.const_data_offset + nir->constant_data_size; - for (uint32_t i = 0; i < ARRAY_SIZE(remap_table); i++) { - if (remap_table[i] != -1) - fprintf(stderr, "%u -> %hhi\n", i, remap_table[i]); - } } else { g.add_const_data(nir->constant_data, nir->constant_data_size); }