Lines Matching refs:dWeight
20 void gdImageSkewX (gdImagePtr dst, gdImagePtr src, int uRow, int iOffset, double dWeight, int clrBa… in gdImageSkewX() argument
53 r = (int)(gdImageRed(src,pxlSrc) * dWeight); in gdImageSkewX()
54 g = (int)(gdImageGreen(src,pxlSrc) * dWeight); in gdImageSkewX()
55 b = (int)(gdImageBlue(src,pxlSrc) * dWeight); in gdImageSkewX()
56 a = (int)(gdImageAlpha(src,pxlSrc) * dWeight); in gdImageSkewX()
117 void gdImageSkewY (gdImagePtr dst, gdImagePtr src, int uCol, int iOffset, double dWeight, int clrBa… in gdImageSkewY() argument
133 r = (int)((double)gdImageRed(src,clrBack) * dWeight); in gdImageSkewY()
134 g = (int)((double)gdImageGreen(src,clrBack) * dWeight); in gdImageSkewY()
135 b = (int)((double)gdImageBlue(src,clrBack) * dWeight); in gdImageSkewY()
136 a = (int)((double)gdImageAlpha(src,clrBack) * dWeight); in gdImageSkewY()
144 r = (int)((double)gdImageRed(src,pxlSrc) * dWeight); in gdImageSkewY()
145 g = (int)((double)gdImageGreen(src,pxlSrc) * dWeight); in gdImageSkewY()
146 b = (int)((double)gdImageBlue(src,pxlSrc) * dWeight); in gdImageSkewY()
147 a = (int)((double)gdImageAlpha(src,pxlSrc) * dWeight); in gdImageSkewY()