tests/gem_tiled_fence_blits: Ensure the bo count is odd

In order to avoid a self-copy, the number of bo must not be even.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2011-02-01 11:12:40 +00:00
parent 371f87f2d8
commit c1e9795050

View File

@ -148,7 +148,7 @@ int main(int argc, char **argv)
fd = drm_open_any();
count = 3 * gem_aperture_size(fd) / (1024*1024) / 2;
count += (count & 1) == 0;
count |= 1;
printf("Using %d 1MiB buffers\n", count);
bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);