diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2014-08-30 11:44:51 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2014-08-30 11:44:51 +0100 |
commit | 10552b5ca6c193e0c696e96c9f5e0d6142f4d8ee (patch) | |
tree | 3444d7c434189df481759c8419c6c092155fc872 /tests/gem_bad_blit.c | |
parent | 255bade1ea98e642fe6d01c9dee8d5e8661bd816 (diff) |
batch: Specify number of relocations to accommodate
Since relocations are variable size, depending upon generation, it is
easier to handle the resizing of the batch request inside the
BEGIN_BATCH macro. This still leaves us with having to resize commands
in a few places - which still need adaption for gen8+.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/gem_bad_blit.c')
-rw-r--r-- | tests/gem_bad_blit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_bad_blit.c b/tests/gem_bad_blit.c index 33d1ac8c..b467ba83 100644 --- a/tests/gem_bad_blit.c +++ b/tests/gem_bad_blit.c @@ -78,7 +78,7 @@ bad_blit(drm_intel_bo *src_bo, uint32_t devid) cmd_bits |= XY_SRC_COPY_BLT_DST_TILED; } - BLIT_COPY_BATCH_START(devid, cmd_bits); + BLIT_COPY_BATCH_START(cmd_bits); OUT_BATCH((3 << 24) | /* 32 bits */ (0xcc << 16) | /* copy ROP */ dst_pitch); |