summaryrefslogtreecommitdiff
path: root/lib/intel_batchbuffer.h
diff options
context:
space:
mode:
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2018-01-19 15:15:30 +0100
committerMaarten Lankhorst <maarten.lankhorst@linux.intel.com>2018-02-01 14:19:48 +0100
commit48bdef4f5754e38bdcc5c4510fdcaf0796f0b50c (patch)
treea62fab616638823fcdd9bbb29138d253a0358a8d /lib/intel_batchbuffer.h
parent06c53e9ae44f1759740738d5ea8029594da31e56 (diff)
lib/intel_batchbuffer: Add src/dst delta arguments to igt_blitter_fast_copy too
Nothing uses this currently, but other copy functions have the same delta now. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Mika Kahola <mika.kahola@intel.com>
Diffstat (limited to 'lib/intel_batchbuffer.h')
-rw-r--r--lib/intel_batchbuffer.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h
index a6d8f986..2c262d7d 100644
--- a/lib/intel_batchbuffer.h
+++ b/lib/intel_batchbuffer.h
@@ -226,10 +226,12 @@ unsigned igt_buf_width(struct igt_buf *buf);
unsigned igt_buf_height(struct igt_buf *buf);
void igt_blitter_fast_copy(struct intel_batchbuffer *batch,
- struct igt_buf *src, unsigned src_x, unsigned src_y,
- unsigned width, unsigned height,
- int bpp,
- struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
+ struct igt_buf *src, unsigned src_delta,
+ unsigned src_x, unsigned src_y,
+ unsigned width, unsigned height,
+ int bpp,
+ struct igt_buf *dst, unsigned dst_delta,
+ unsigned dst_x, unsigned dst_y);
void igt_blitter_fast_copy__raw(int fd,
/* src */