diff options
author | marha <marha@users.sourceforge.net> | 2010-09-21 19:02:11 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-09-21 19:02:11 +0000 |
commit | 1c3f92a2ba37d5220032112f9d8925857b1fa71d (patch) | |
tree | ebf62974d469d204ce12aefc4e8026a7ebbf9e73 /pixman/test/blitters-test.c | |
parent | 97aaa22fb796662afd3ad4052d4f7d1c5945bb70 (diff) | |
parent | eeab52467b06a339cb5baee3071ef83bf3a48edb (diff) | |
download | vcxsrv-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.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,
|