Module: Mesa Branch: master Commit: ec8ed2f2779c30863f7478b8f5ad9654abbff346 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ec8ed2f2779c30863f7478b8f5ad9654abbff346
Author: Chad Versace <[email protected]> Date: Fri Aug 25 05:04:13 2017 -0700 anv: Annotate entrypoint table with index and func name This helps when debugging a broken entrypoint table. Reviewed-by: Jason Ekstrand <[email protected]> --- src/intel/vulkan/anv_entrypoints_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py index f5c527ed92..3240704a0d 100644 --- a/src/intel/vulkan/anv_entrypoints_gen.py +++ b/src/intel/vulkan/anv_entrypoints_gen.py @@ -120,8 +120,8 @@ TEMPLATE_C = Template(textwrap.dedent(u"""\ ; static const struct anv_entrypoint entrypoints[] = { - % for _, _, _, num, h, _ in entrypoints: - { ${offsets[num]}, ${'{:0=#8x}'.format(h)} }, + % for _, name, _, num, h, _ in entrypoints: + [${num}] = { ${offsets[num]}, ${'{:0=#8x}'.format(h)} }, /* vk${name} */ % endfor }; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
