diff options
author | Eric Anholt <[email protected]> | 2013-01-09 15:33:19 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-01-25 09:36:43 -0800 |
commit | f6191e09aa8f678dd5fe3cd463d70e4a58e7b2a6 (patch) | |
tree | 273e331ee87d98a896533ab63fe8751175755f2c /src/mesa/main/remap.c | |
parent | 22233da1ee4b59663966169759960c00c033d0e9 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mesa/main/remap.c')
-rw-r--r-- | src/mesa/main/remap.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/remap.c b/src/mesa/main/remap.c index c89fba45302..a098705612e 100644 --- a/src/mesa/main/remap.c +++ b/src/mesa/main/remap.c @@ -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); + } } } |