diff options
author | Keith Whitwell <[email protected]> | 2008-04-15 14:35:29 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-15 14:35:29 +0100 |
commit | c81bbab6f6c0413996799800cac6fb49a698e765 (patch) | |
tree | 7004fb38e69c2fe106ce5ba666105b7039055d43 /src/gallium/auxiliary/translate/SConscript | |
parent | 6a26a9c58cc38ff636ee88ce01fed40eea500fc0 (diff) |
gallium: add a generic vertex (or other) buffer translation module
Diffstat (limited to 'src/gallium/auxiliary/translate/SConscript')
-rw-r--r-- | src/gallium/auxiliary/translate/SConscript | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/translate/SConscript b/src/gallium/auxiliary/translate/SConscript new file mode 100644 index 00000000000..947b9438cb2 --- /dev/null +++ b/src/gallium/auxiliary/translate/SConscript @@ -0,0 +1,9 @@ +Import('*') + +cso_cache = env.ConvenienceLibrary( + target = 'translate', + source = [ + 'translate_generic.c', + ]) + +auxiliaries.insert(0, translate) |