Lines Matching refs:srcx
164 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy() argument
178 if (srcx>src->VXsize || srcy>src->VYsize in __VGLBitmapCopy()
181 if (srcx < 0) { in __VGLBitmapCopy()
182 width=width+srcx; dstx-=srcx; srcx=0; in __VGLBitmapCopy()
188 width=width+dstx; srcx-=dstx; dstx=0; in __VGLBitmapCopy()
193 if (srcx+width > src->VXsize) in __VGLBitmapCopy()
194 width=src->VXsize-srcx; in __VGLBitmapCopy()
213 p = src->Bitmap+(srcline*src->VXsize+srcx)*dst->PixelBytes; in __VGLBitmapCopy()
225 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy() argument
238 __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, width, hight); in VGLBitmapCopy()
239 error = __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, in VGLBitmapCopy()
244 srcx = dstx; in VGLBitmapCopy()
248 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, -hight); in VGLBitmapCopy()