From c1e9795050b1e4b76c7f9acd3cc5071f0ecb06ed Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Tue, 1 Feb 2011 11:12:40 +0000 Subject: [PATCH] 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 --- tests/gem_tiled_fence_blits.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gem_tiled_fence_blits.c b/tests/gem_tiled_fence_blits.c index bc2462f7..9f41f7be 100644 --- a/tests/gem_tiled_fence_blits.c +++ b/tests/gem_tiled_fence_blits.c @@ -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);