Lines Matching refs:srcx
162 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy() argument
176 if (srcx>src->VXsize || srcy>src->VYsize in __VGLBitmapCopy()
179 if (srcx < 0) { in __VGLBitmapCopy()
180 width=width+srcx; dstx-=srcx; srcx=0; in __VGLBitmapCopy()
186 width=width+dstx; srcx-=dstx; dstx=0; in __VGLBitmapCopy()
191 if (srcx+width > src->VXsize) in __VGLBitmapCopy()
192 width=src->VXsize-srcx; in __VGLBitmapCopy()
211 p = src->Bitmap+(srcline*src->VXsize+srcx)*dst->PixelBytes; in __VGLBitmapCopy()
223 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy() argument
236 __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, width, hight); in VGLBitmapCopy()
237 error = __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, in VGLBitmapCopy()
242 srcx = dstx; in VGLBitmapCopy()
246 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, -hight); in VGLBitmapCopy()