Lines Matching refs:thick
204 im->thick = 1; in gdImageCreate()
264 im->thick = 1; in gdImageCreateTrueColor()
1003 if (im->thick > 1) { in gdImageHLine()
1004 int thickhalf = im->thick >> 1; in gdImageHLine()
1005 _gdImageFilledHRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col); in gdImageHLine()
1022 if (im->thick > 1) { in gdImageVLine()
1023 int thickhalf = im->thick >> 1; in gdImageVLine()
1024 gdImageFilledRectangle(im, x - thickhalf, y1, x + im->thick - thickhalf - 1, y2, col); in gdImageVLine()
1045 int thick = im->thick; in gdImageLine() local
1083 wid = thick / ac; in gdImageLine()
1147 wid = thick / as; in gdImageLine()
1327 int thick = im->thick; in gdImageDashedLine() local
1337 wid = thick / as; in gdImageDashedLine()
1386 wid = thick / as; in gdImageDashedLine()
2088 int thick = im->thick; in gdImageRectangle() local
2091 if (x1 == x2 && y1 == y2 && thick == 1) { in gdImageRectangle()
2108 if (thick > 1) { in gdImageRectangle()
2110 int half = thick >> 1; in gdImageRectangle()
2118 cy = y1ul + thick; in gdImageRectangle()
2126 cy = y2lr - thick; in gdImageRectangle()
2134 cy = y1ul + thick - 1; in gdImageRectangle()
2135 while (cy++ < y2lr -thick) { in gdImageRectangle()
2137 while (cx++ < x1ul + thick) { in gdImageRectangle()
2142 cy = y1ul + thick - 1; in gdImageRectangle()
2143 while (cy++ < y2lr -thick) { in gdImageRectangle()
2144 cx = x2lr - thick - 1; in gdImageRectangle()
2815 im->thick = thickness; in gdImageSetThickness()