bgColor           849 ext/gd/libgd/gd.h gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor);
bgColor           850 ext/gd/libgd/gd.h gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor);
bgColor           851 ext/gd/libgd/gd.h gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor);
bgColor           852 ext/gd/libgd/gd.h gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor);
bgColor           638 ext/gd/libgd/gd_interpolation.c static inline int _setEdgePixel(const gdImagePtr src, unsigned int x, unsigned int y, gdFixed coverage, const int bgColor)
bgColor           643 ext/gd/libgd/gd_interpolation.c 	return _color_blend(bgColor, c);
bgColor           646 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowTC(gdImagePtr im, const int x, const int y, const int bgColor)
bgColor           651 ext/gd/libgd/gd_interpolation.c 			return bgColor == -1 ? gdTrueColorAlpha(0, 0, 0, 127) : bgColor;
bgColor           697 ext/gd/libgd/gd_interpolation.c static inline int getPixelOverflowPalette(gdImagePtr im, const int x, const int y, const int bgColor)
bgColor           702 ext/gd/libgd/gd_interpolation.c 			return bgColor == -1 ? gdTrueColorAlpha(0, 0, 0, 127) : bgColor;
bgColor           745 ext/gd/libgd/gd_interpolation.c static int getPixelInterpolateWeight(gdImagePtr im, const double x, const double y, const int bgColor)
bgColor           760 ext/gd/libgd/gd_interpolation.c 	const int c1 = im->trueColor == 1 ? getPixelOverflowTC(im, sx, sy, bgColor)         : getPixelOverflowPalette(im, sx, sy, bgColor);
bgColor           761 ext/gd/libgd/gd_interpolation.c 	const int c2 = im->trueColor == 1 ? getPixelOverflowTC(im, sx - 1, sy, bgColor)     : getPixelOverflowPalette(im, sx - 1, sy, bgColor);
bgColor           762 ext/gd/libgd/gd_interpolation.c 	const int c3 = im->trueColor == 1 ? getPixelOverflowTC(im, sx, sy - 1, bgColor)     : getPixelOverflowPalette(im, sx, sy - 1, bgColor);
bgColor           763 ext/gd/libgd/gd_interpolation.c 	const int c4 = im->trueColor == 1 ? getPixelOverflowTC(im, sx - 1, sy - 1, bgColor) : getPixelOverflowPalette(im, sx, sy - 1, bgColor);
bgColor           806 ext/gd/libgd/gd_interpolation.c int getPixelInterpolated(gdImagePtr im, const double x, const double y, const int bgColor)
bgColor           822 ext/gd/libgd/gd_interpolation.c 		return getPixelInterpolateWeight(im, x, y, bgColor);
bgColor           827 ext/gd/libgd/gd_interpolation.c 			return getPixelOverflowTC(im, xi, yi, bgColor);
bgColor           829 ext/gd/libgd/gd_interpolation.c 			return getPixelOverflowPalette(im, xi, yi, bgColor);
bgColor           850 ext/gd/libgd/gd_interpolation.c 				const int rgbs = getPixelOverflowTC(im, xii, yii, bgColor);
bgColor           860 ext/gd/libgd/gd_interpolation.c 				const int rgbs = getPixelOverflowPalette(im, xii, yii, bgColor);
bgColor          1665 ext/gd/libgd/gd_interpolation.c gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor)
bgColor          1705 ext/gd/libgd/gd_interpolation.c 					dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor;
bgColor          1714 ext/gd/libgd/gd_interpolation.c gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor)
bgColor          1740 ext/gd/libgd/gd_interpolation.c 	if (bgColor < 0) {
bgColor          1762 ext/gd/libgd/gd_interpolation.c 				dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor;
bgColor          1765 ext/gd/libgd/gd_interpolation.c 				register int c = getPixelInterpolated(src, n, m, bgColor);
bgColor          1768 ext/gd/libgd/gd_interpolation.c 				dst->tpixels[dst_offset_y][dst_offset_x++] = _color_blend(bgColor, c);
bgColor          1770 ext/gd/libgd/gd_interpolation.c 				dst->tpixels[dst_offset_y][dst_offset_x++] = getPixelInterpolated(src, n, m, bgColor);
bgColor          1778 ext/gd/libgd/gd_interpolation.c gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor)
bgColor          1842 ext/gd/libgd/gd_interpolation.c 						pixel2 = bgColor;
bgColor          1843 ext/gd/libgd/gd_interpolation.c 						pixel3 = bgColor;
bgColor          1844 ext/gd/libgd/gd_interpolation.c 						pixel4 = bgColor;
bgColor          1846 ext/gd/libgd/gd_interpolation.c 						pixel2 = bgColor;
bgColor          1847 ext/gd/libgd/gd_interpolation.c 						pixel3 = bgColor;
bgColor          1848 ext/gd/libgd/gd_interpolation.c 						pixel4 = bgColor;
bgColor          1885 ext/gd/libgd/gd_interpolation.c 				dst->tpixels[dst_offset_y][dst_offset_x++] = bgColor;
bgColor          1893 ext/gd/libgd/gd_interpolation.c gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor)
bgColor          2122 ext/gd/libgd/gd_interpolation.c 							c = bgColor;
bgColor          2127 ext/gd/libgd/gd_interpolation.c 							c = _color_blend(bgColor, c);
bgColor          2151 ext/gd/libgd/gd_interpolation.c 				dst->tpixels[dst_offset_y][dst_offset_x] =  bgColor;