diff options
author | Brian <[email protected]> | 2008-03-10 17:21:43 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-10 17:22:18 -0600 |
commit | d5692cb349fb74e8f9d3a18f5bbd788b09b93581 (patch) | |
tree | af13ec8fcd074f34b6188a177bd976c4c8d04434 /src/gallium/auxiliary/sct/SConscript | |
parent | 5b82d551b7a4954b24059585fea207f3a250ec0f (diff) |
gallium: new surface/context tracker (sct) module
Will be used for tracking the surfaces and textures which are bound/used by
contexts.
Diffstat (limited to 'src/gallium/auxiliary/sct/SConscript')
-rw-r--r-- | src/gallium/auxiliary/sct/SConscript | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/sct/SConscript b/src/gallium/auxiliary/sct/SConscript new file mode 100644 index 00000000000..76927d973f8 --- /dev/null +++ b/src/gallium/auxiliary/sct/SConscript @@ -0,0 +1,9 @@ +Import('*') + +sct = env.ConvenienceLibrary( + target = 'sct', + source = [ + 'sct.c' + ]) + +auxiliaries.insert(0, sct) |