Lines Matching refs:thick

156 	im->thick = 1;  in gdImageCreate()
217 im->thick = 1; in gdImageCreateTrueColor()
976 if ((p_dist >= 0) && (p_dist <= (float) (im->thick))) { in gdImageAntiAliasedApply()
1052 if (im->thick > 1) { in gdImageHLine()
1053 int thickhalf = im->thick >> 1; in gdImageHLine()
1054 gdImageFilledRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col); in gdImageHLine()
1071 if (im->thick > 1) { in gdImageVLine()
1072 int thickhalf = im->thick >> 1; in gdImageVLine()
1073 gdImageFilledRectangle(im, x - thickhalf, y1, x + im->thick - thickhalf - 1, y2, col); in gdImageVLine()
1094 int thick = im->thick; in gdImageLine() local
1132 wid = thick / ac; in gdImageLine()
1196 wid = thick / as; in gdImageLine()
1403 int thick = im->thick; in gdImageDashedLine() local
1413 wid = thick / as; in gdImageDashedLine()
1417 wid = (int)(thick * sin(atan2(dy, dx))); in gdImageDashedLine()
1463 wid = thick / as; in gdImageDashedLine()
2033 int thick = im->thick; in gdImageRectangle() local
2037 if (x1 == x2 && y1 == y2 && thick == 1) { in gdImageRectangle()
2053 if (thick > 1) { in gdImageRectangle()
2055 int half = thick >> 1; in gdImageRectangle()
2056 half1 = thick - half; in gdImageRectangle()
2063 cy = y1ul + thick; in gdImageRectangle()
2071 cy = y2lr - thick; in gdImageRectangle()
2079 cy = y1ul + thick - 1; in gdImageRectangle()
2080 while (cy++ < y2lr -thick) { in gdImageRectangle()
2082 while (cx++ < x1ul + thick) { in gdImageRectangle()
2087 cy = y1ul + thick - 1; in gdImageRectangle()
2088 while (cy++ < y2lr -thick) { in gdImageRectangle()
2089 cx = x2lr - thick - 1; in gdImageRectangle()
2733 im->thick = thickness; in gdImageSetThickness()