brw: remove debug printf
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Fixes: fcf4401824 ("brw: handle wa_18019110168 with independent shader compilation")
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35815>
This commit is contained in:
Lionel Landwerlin 2025-06-29 08:57:47 +03:00
parent 3f1d40d230
commit 89f3ee4cb2

View file

@ -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);
}