diff options
author | Kenneth Graunke <[email protected]> | 2017-08-28 15:57:20 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-08-30 16:59:07 -0700 |
commit | 81d5b61a194d0cb060c4e836db6abc4f1b4fb0e8 (patch) | |
tree | 31346c912873099e8d361942cf31dfd50b55e321 /src/intel/blorp/blorp.h | |
parent | b8dd69e1b49a5c4c5c82e34f804a97f7448ff6c3 (diff) |
blorp: Turn anv_CmdCopyBuffer into a blorp_buffer_copy() helper.
I want to be able to copy between buffer objects using BLORP in the i965
driver. Anvil already had code to do this, in a reasonably efficient
manner - first using large bpp copies, then smaller bpp copies.
This patch moves that logic into BLORP as blorp_buffer_copy(), so we
can use it in both drivers.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/blorp/blorp.h')
-rw-r--r-- | src/intel/blorp/blorp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/intel/blorp/blorp.h b/src/intel/blorp/blorp.h index 4d9a44b0926..9716c663021 100644 --- a/src/intel/blorp/blorp.h +++ b/src/intel/blorp/blorp.h @@ -133,6 +133,12 @@ blorp_copy(struct blorp_batch *batch, uint32_t src_width, uint32_t src_height); void +blorp_buffer_copy(struct blorp_batch *batch, + struct blorp_address src, + struct blorp_address dst, + uint64_t size); + +void blorp_fast_clear(struct blorp_batch *batch, const struct blorp_surf *surf, enum isl_format format, uint32_t level, uint32_t start_layer, uint32_t num_layers, |