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/Makefile | |
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/Makefile')
-rw-r--r-- | src/gallium/auxiliary/util/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/Makefile b/src/gallium/auxiliary/util/Makefile index 160df8dfa7..d68bdeadcc 100644 --- a/src/gallium/auxiliary/util/Makefile +++ b/src/gallium/auxiliary/util/Makefile @@ -24,6 +24,7 @@ C_SOURCES = \ u_tile.c \ u_time.c \ u_timed_winsys.c \ + u_upload_mgr.c \ u_simple_screen.c include ../../Makefile.template |