diff options
author | Marek Olšák <[email protected]> | 2017-03-02 01:15:55 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-05-15 13:01:33 +0200 |
commit | b8e552424eed58d95671da3191c7199cf171b3f0 (patch) | |
tree | 04b3030072ef8285580f2b31162d0e45a0c92dd1 /src/gallium/auxiliary/Makefile.sources | |
parent | dca19b1d427f0ecbc0bbd530d1fc3f6c0ce2b5c1 (diff) |
gallium/util: add threaded_context as a pipe_context wrapper
v2: - rename num_calls -> num_call_slots (for tc_call)
- rename num_calls -> num_total_call_slots (for tc_batch)
- rename num_offloaded/direct_calls -> num_offloaded/direct_slots
- declare slot[0] instead of slot[1]
- remove no-op leftover code from tc_draw_vbo
- use tc_set_resource_reference to fill threaded_transfer
- fix map flags for sparse buffers
- cosmetic changes
Reviewed-by: Nicolai Hähnle <[email protected]>
Tested-by: Dieter Nützel <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/Makefile.sources')
-rw-r--r-- | src/gallium/auxiliary/Makefile.sources | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile.sources b/src/gallium/auxiliary/Makefile.sources index dbdb3ca8152..baebee67a60 100644 --- a/src/gallium/auxiliary/Makefile.sources +++ b/src/gallium/auxiliary/Makefile.sources @@ -301,6 +301,9 @@ C_SOURCES := \ util/u_time.h \ util/u_transfer.c \ util/u_transfer.h \ + util/u_threaded_context.c \ + util/u_threaded_context.h \ + util/u_threaded_context_calls.h \ util/u_upload_mgr.c \ util/u_upload_mgr.h \ util/u_vbuf.c \ |