diff options
author | Keith Whitwell <[email protected]> | 2009-02-05 14:44:17 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-02-05 16:04:38 +0000 |
commit | 3120894c6d33a26cda642246344e8945db200ac2 (patch) | |
tree | 2dd29ed9dcf667c5940c06b8a20fc5240b0f2986 /src/gallium/SConscript | |
parent | 099e9d20f0e8f5ee108e4fbb4bf7cae97b5f9a4a (diff) |
gallium: add new aux lib for index list translations
Could this be the ultimate index list translating utility? Maybe, but it
doesn't yet include support for splitting primitives.
Unlike previous attempts, this captures all possible combinations of API
and hardware provoking vertex, supports generated list reuse and various
other tricks. Relies on python-generated code.
Diffstat (limited to 'src/gallium/SConscript')
-rw-r--r-- | src/gallium/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/SConscript b/src/gallium/SConscript index 85baf51a7f0..0c632ac2b8b 100644 --- a/src/gallium/SConscript +++ b/src/gallium/SConscript @@ -21,6 +21,7 @@ SConscript([ 'auxiliary/translate/SConscript', 'auxiliary/draw/SConscript', 'auxiliary/pipebuffer/SConscript', + 'auxiliary/indices/SConscript', ]) for driver in env['drivers']: |