summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-01-14 10:59:36 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-01-14 10:59:36 +0000
commitaa7bbf0e9b00afeeab12fb092b62976cf24fb439 (patch)
treec18d4ee9d969c2fca65036c7d9194d0961df61a3 /Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c
parent51f86fe156c11e441cc74238dc38b99f9576d1a9 (diff)
libgd 2.1.1
git-svn-id: svn://tug.org/texlive/trunk@36054 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c')
-rw-r--r--Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c b/Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c
deleted file mode 100644
index 027bfacd20b..00000000000
--- a/Build/source/libs/gd/libgd-2.1.0/tests/gdimageopenpolygon/gdimageopenpolygon3.c
+++ /dev/null
@@ -1,35 +0,0 @@
-#include <stdlib.h>
-#include "gd.h"
-#include "gdhelpers.h"
-#include "gdtest.h"
-
-int
-main(void)
-{
- gdImagePtr im;
- int white, black, r;
- gdPointPtr points;
-
- im = gdImageCreate(100, 100);
- if (!im) exit(EXIT_FAILURE);
- white = gdImageColorAllocate(im, 0xff, 0xff, 0xff);
- black = gdImageColorAllocate(im, 0, 0, 0);
- gdImageFilledRectangle(im, 0, 0, 99, 99, white);
- points = (gdPointPtr)calloc(3, sizeof(gdPoint));
- if (!points) {
- gdImageDestroy(im);
- exit(EXIT_FAILURE);
- }
- points[0].x = 10;
- points[0].y = 10;
- points[1].x = 50;
- points[1].y = 70;
- points[2].x = 90;
- points[2].y = 30;
- gdImageOpenPolygon(im, points, 3, black);
- r = gdAssertImageEqualsToFile(GDTEST_TOP_DIR "/gdimageopenpolygon/gdimageopenpolygon3.png", im);
- free(points);
- gdImageDestroy(im);
- if (!r) exit(EXIT_FAILURE);
- return EXIT_SUCCESS;
-}