aboutsummaryrefslogtreecommitdiff
path: root/pixman/test/blitters-test.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-09-21 18:40:53 +0000
committermarha <marha@users.sourceforge.net>2010-09-21 18:40:53 +0000
commiteeab52467b06a339cb5baee3071ef83bf3a48edb (patch)
tree9a1ab85abad405b87053fd9fc32c7d6ba676a385 /pixman/test/blitters-test.c
parent874d43ba2be612fbe7bab82de6b35cd4c6d59958 (diff)
downloadvcxsrv-eeab52467b06a339cb5baee3071ef83bf3a48edb.tar.gz
vcxsrv-eeab52467b06a339cb5baee3071ef83bf3a48edb.tar.bz2
vcxsrv-eeab52467b06a339cb5baee3071ef83bf3a48edb.zip
pixman git update 21/9/2010
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,