mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
mesa: Print more informative debug for _mesa_do_init_remap_table().
This is the same logic from _mesa_map_function_array(). Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
22233da1ee
commit
f6191e09aa
1 changed files with 4 additions and 2 deletions
|
|
@ -208,8 +208,10 @@ _mesa_do_init_remap_table(const char *pool,
|
|||
offset = _mesa_map_function_spec(spec);
|
||||
/* store the dispatch offset in the remap table */
|
||||
driDispatchRemapTable[i] = offset;
|
||||
if (offset < 0)
|
||||
_mesa_warning(NULL, "failed to remap index %d", i);
|
||||
if (offset < 0) {
|
||||
const char *name = spec + strlen(spec) + 1;
|
||||
_mesa_warning(NULL, "failed to remap %s", name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue