diff options
author | Chia-I Wu <[email protected]> | 2014-09-01 12:25:53 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-09-09 13:31:36 +0800 |
commit | dab4a676f7590e94640461ad454911e09d95fa88 (patch) | |
tree | 96b6126d403260e3e5542b406ef6df9dc57760a8 /src/gallium/drivers/ilo/Makefile.sources | |
parent | 43bf14eaeb3e93bb9f69966331d001922954acab (diff) |
ilo: add a builder for building BOs for submission
Comparing to how we manage batch and instruction buffers, the new builder
- does not flush
- manages both types of buffers
- manages STATE_BASE_ADDRESS
- uploads kernels using unsynchronized mapping
- has its own decoder for the buffers
- provides more helpers
Diffstat (limited to 'src/gallium/drivers/ilo/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/ilo/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/Makefile.sources b/src/gallium/drivers/ilo/Makefile.sources index f9be2450164..7f0cf75938d 100644 --- a/src/gallium/drivers/ilo/Makefile.sources +++ b/src/gallium/drivers/ilo/Makefile.sources @@ -15,6 +15,8 @@ C_SOURCES := \ ilo_blitter_blt.c \ ilo_blitter_pipe.c \ ilo_blitter_rectlist.c \ + ilo_builder.c \ + ilo_builder_decode.c \ ilo_common.h \ ilo_context.c \ ilo_context.h \ |