aboutsummaryrefslogtreecommitdiff
path: root/pixman/test/blitters-test.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-09-21 19:02:11 +0000
committermarha <marha@users.sourceforge.net>2010-09-21 19:02:11 +0000
commit1c3f92a2ba37d5220032112f9d8925857b1fa71d (patch)
treeebf62974d469d204ce12aefc4e8026a7ebbf9e73 /pixman/test/blitters-test.c
parent97aaa22fb796662afd3ad4052d4f7d1c5945bb70 (diff)
parenteeab52467b06a339cb5baee3071ef83bf3a48edb (diff)
downloadvcxsrv-1c3f92a2ba37d5220032112f9d8925857b1fa71d.tar.gz
vcxsrv-1c3f92a2ba37d5220032112f9d8925857b1fa71d.tar.bz2
vcxsrv-1c3f92a2ba37d5220032112f9d8925857b1fa71d.zip
svn merge ^/branches/released .
Diffstat (limited to 'pixman/test/blitters-test.c')
-rw-r--r--pixman/test/blitters-test.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/pixman/test/blitters-test.c b/pixman/test/blitters-test.c
index a61817d96..a9e8cc2ce 100644
--- a/pixman/test/blitters-test.c
+++ b/pixman/test/blitters-test.c
@@ -14,21 +14,6 @@
static pixman_indexed_t rgb_palette[9];
static pixman_indexed_t y_palette[9];
-static void *
-aligned_malloc (size_t align, size_t size)
-{
- void *result;
-
-#ifdef HAVE_POSIX_MEMALIGN
- if (posix_memalign (&result, align, size) != 0)
- result = NULL;
-#else
- result = malloc (size);
-#endif
-
- return result;
-}
-
/* Create random image for testing purposes */
static pixman_image_t *
create_random_image (pixman_format_code_t *allowed_formats,