Lines Matching refs:c
87 #define gdTrueColorGetAlpha(c) (((c) & 0x7F000000) >> 24) argument
88 #define gdTrueColorGetRed(c) (((c) & 0xFF0000) >> 16) argument
89 #define gdTrueColorGetGreen(c) (((c) & 0x00FF00) >> 8) argument
90 #define gdTrueColorGetBlue(c) ((c) & 0x0000FF) argument
314 void gdImageChar(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
315 void gdImageCharUp(gdImagePtr im, gdFontPtr f, int x, int y, int c, int color);
381 void gdImagePolygon(gdImagePtr im, gdPointPtr p, int n, int c);
382 void gdImageFilledPolygon(gdImagePtr im, gdPointPtr p, int n, int c);
522 void gdImageEllipse(gdImagePtr im, int cx, int cy, int w, int h, int c);
576 void gdImageSetAntiAliased(gdImagePtr im, int c);
577 void gdImageSetAntiAliasedDontBlend(gdImagePtr im, int c, int dont_blend);
605 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ argument
606 (im)->red[(c)])
607 #define gdImageGreen(im, c) ((im)->trueColor ? gdTrueColorGetGreen(c) : \ argument
608 (im)->green[(c)])
609 #define gdImageBlue(im, c) ((im)->trueColor ? gdTrueColorGetBlue(c) : \ argument
610 (im)->blue[(c)])
611 #define gdImageAlpha(im, c) ((im)->trueColor ? gdTrueColorGetAlpha(c) : \ argument
612 (im)->alpha[(c)])