summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@redhat.com>2013-09-29 16:47:53 -0400
committerSøren Sandmann Pedersen <ssp@redhat.com>2013-09-29 16:47:53 -0400
commitb513b3dffe979056dbbbdc8e0659f8018c51c5f5 (patch)
treed03ba69c5cd17f34319cc5c457598365ccfc5bad
parentfa0559eb710ef6252dea5a70ade28a2c167a7a85 (diff)
blitters-test: Remove unused variable
-rw-r--r--test/blitters-test.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/blitters-test.c b/test/blitters-test.c
index af948350..920cbbbd 100644
--- a/test/blitters-test.c
+++ b/test/blitters-test.c
@@ -244,7 +244,7 @@ test_composite (int testnum, int verbose)
int w, h;
pixman_op_t op;
pixman_format_code_t src_fmt, dst_fmt, mask_fmt;
- uint32_t *dstbuf, *srcbuf, *maskbuf;
+ uint32_t *srcbuf, *maskbuf;
uint32_t crc32;
int max_width, max_height, max_extra_stride;
FLOAT_REGS_CORRUPTION_DETECTOR_START ();
@@ -291,7 +291,6 @@ test_composite (int testnum, int verbose)
dst_height = pixman_image_get_height (dst_img);
dst_stride = pixman_image_get_stride (dst_img);
- dstbuf = pixman_image_get_data (dst_img);
srcbuf = pixman_image_get_data (src_img);
src_x = prng_rand_n (src_width);