diff options
author | Brian Paul <[email protected]> | 2017-03-05 12:59:09 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-03-08 08:50:21 -0700 |
commit | 2f3f5728f7107176783d594bf6faf3112ded5329 (patch) | |
tree | b9e1a7c4cb63e71effeaf1202bc895fc3457f2b2 /src/gallium/auxiliary/indices/u_indices_gen.py | |
parent | a0927da006ebd00da3fb3e613d399a0b97f081bb (diff) |
util/indices: minor clean-ups
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/indices/u_indices_gen.py')
-rw-r--r-- | src/gallium/auxiliary/indices/u_indices_gen.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/indices/u_indices_gen.py b/src/gallium/auxiliary/indices/u_indices_gen.py index fb6b31016d6..23d8bd782eb 100644 --- a/src/gallium/auxiliary/indices/u_indices_gen.py +++ b/src/gallium/auxiliary/indices/u_indices_gen.py @@ -70,7 +70,7 @@ pv_idx = dict(first='PV_FIRST', last='PV_LAST') pr_idx = dict(prdisable='PR_DISABLE', prenable='PR_ENABLE') def prolog(): - print '''/* File automatically generated by indices.py */''' + print '''/* File automatically generated by u_indices_gen.py */''' print copyright print r''' @@ -79,11 +79,8 @@ def prolog(): * Functions to translate and generate index lists */ -#include "indices/u_indices.h" #include "indices/u_indices_priv.h" -#include "pipe/p_compiler.h" #include "util/u_debug.h" -#include "pipe/p_defines.h" #include "util/u_memory.h" |