Lines Matching refs:dWeight
16 void gdImageSkewX (gdImagePtr dst, gdImagePtr src, int uRow, int iOffset, double dWeight, int clrBa… in gdImageSkewX() argument
49 r = (int)(gdImageRed(src,pxlSrc) * dWeight); in gdImageSkewX()
50 g = (int)(gdImageGreen(src,pxlSrc) * dWeight); in gdImageSkewX()
51 b = (int)(gdImageBlue(src,pxlSrc) * dWeight); in gdImageSkewX()
52 a = (int)(gdImageAlpha(src,pxlSrc) * dWeight); in gdImageSkewX()
113 void gdImageSkewY (gdImagePtr dst, gdImagePtr src, int uCol, int iOffset, double dWeight, int clrBa… in gdImageSkewY() argument
129 r = (int)((double)gdImageRed(src,clrBack) * dWeight); in gdImageSkewY()
130 g = (int)((double)gdImageGreen(src,clrBack) * dWeight); in gdImageSkewY()
131 b = (int)((double)gdImageBlue(src,clrBack) * dWeight); in gdImageSkewY()
132 a = (int)((double)gdImageAlpha(src,clrBack) * dWeight); in gdImageSkewY()
140 r = (int)((double)gdImageRed(src,pxlSrc) * dWeight); in gdImageSkewY()
141 g = (int)((double)gdImageGreen(src,pxlSrc) * dWeight); in gdImageSkewY()
142 b = (int)((double)gdImageBlue(src,pxlSrc) * dWeight); in gdImageSkewY()
143 a = (int)((double)gdImageAlpha(src,pxlSrc) * dWeight); in gdImageSkewY()