summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00078.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00078.c')
-rw-r--r--Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00078.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00078.c b/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00078.c
new file mode 100644
index 00000000000..adf244ebca2
--- /dev/null
+++ b/Build/source/libs/gd/libgd-src/tests/gdimagefilledrectangle/bug00078.c
@@ -0,0 +1,39 @@
+#include "gd.h"
+#include "gdtest.h"
+
+int main()
+{
+ gdImagePtr im;
+ int c1,c2,c3,c4,c5;
+
+ im = gdImageCreateTrueColor(100,100);
+ gdImageFilledRectangle(im, 2,2, 80,95, 0x50FFFFFF);
+ c1 = gdImageGetTrueColorPixel(im, 2, 2);
+ c2 = gdImageGetTrueColorPixel(im, 80, 95);
+ c3 = gdImageGetTrueColorPixel(im, 80, 2);
+ c4 = gdImageGetTrueColorPixel(im, 2, 95);
+ c5 = gdImageGetTrueColorPixel(im, 49, 49);
+
+ if (!(0x005e5e5e == c1 && 0x005e5e5e == c2 &&
+ 0x005e5e5e == c3 && 0x005e5e5e == c4)) {
+ return 1;
+ }
+ gdImageFilledRectangle(im, 0, 0, 99, 99, 0x0);
+
+ gdImageFilledRectangle(im, 80,95, 2,2, 0x50FFFFFF);
+ c1 = gdImageGetTrueColorPixel(im, 2, 2);
+ c2 = gdImageGetTrueColorPixel(im, 80, 95);
+ c3 = gdImageGetTrueColorPixel(im, 80, 2);
+ c4 = gdImageGetTrueColorPixel(im, 2, 95);
+ c5 = gdImageGetTrueColorPixel(im, 49, 49);
+
+ if (!(0x005e5e5e == c1 && 0x005e5e5e == c2 &&
+ 0x005e5e5e == c3 && 0x005e5e5e == c4 &&
+ 0x005e5e5e == c5)) {
+ return 1;
+ }
+
+ gdImageDestroy(im);
+ return 0;
+}
+