diff options
author | marha <marha@users.sourceforge.net> | 2010-09-21 18:40:53 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-09-21 18:40:53 +0000 |
commit | eeab52467b06a339cb5baee3071ef83bf3a48edb (patch) | |
tree | 9a1ab85abad405b87053fd9fc32c7d6ba676a385 /pixman/test/blitters-test.c | |
parent | 874d43ba2be612fbe7bab82de6b35cd4c6d59958 (diff) | |
download | vcxsrv-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.c | 15 |
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,
|