Lines Matching refs:srcx
295 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy() argument
300 if (srcx>src->VXsize || srcy>src->VYsize in __VGLBitmapCopy()
303 if (srcx < 0) { in __VGLBitmapCopy()
304 width=width+srcx; dstx-=srcx; srcx=0; in __VGLBitmapCopy()
310 width=width+dstx; srcx-=dstx; dstx=0; in __VGLBitmapCopy()
315 if (srcx+width > src->VXsize) in __VGLBitmapCopy()
316 width=src->VXsize-srcx; in __VGLBitmapCopy()
328 (src->Bitmap+(srcline*src->VXsize)+srcx)); in __VGLBitmapCopy()
333 ReadVerticalLine(src, srcx, srcline, width, in __VGLBitmapCopy()
349 ReadVerticalLine(src, srcx, srcline, width, p); in __VGLBitmapCopy()
359 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy() argument
365 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, hight); in VGLBitmapCopy()