diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-03-20 15:08:59 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-03-20 18:07:11 +0000 |
commit | 210b468722ae4d4a97ccd788ad9de58858a0c7fa (patch) | |
tree | 9f0c08e423bf1532c8288878d3652a4128040272 /src/gallium/auxiliary/util/SConscript | |
parent | 66175aac7609ad314f25fbdff0d3958af310dc24 (diff) |
gallium/util: add upload manager helper module
Add a module that will manage uploading and coalescing multiple
user-buffers, malloc-buffers and other random data that doesn't
happen to be in a GPU buffer already. The module stuffs multiple
little uploads into larger GPU buffers to reduce create/destroy
overheads, etc.
Diffstat (limited to 'src/gallium/auxiliary/util/SConscript')
-rw-r--r-- | src/gallium/auxiliary/util/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/SConscript b/src/gallium/auxiliary/util/SConscript index 9d5dd006f0..0f15c632c3 100644 --- a/src/gallium/auxiliary/util/SConscript +++ b/src/gallium/auxiliary/util/SConscript @@ -26,6 +26,7 @@ util = env.ConvenienceLibrary( 'u_tile.c', 'u_time.c', 'u_timed_winsys.c', + 'u_upload_mgr.c', 'u_simple_screen.c', ]) |