Lines Matching refs:srcx
161 __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in __VGLBitmapCopy() argument
175 if (srcx>src->VXsize || srcy>src->VYsize in __VGLBitmapCopy()
178 if (srcx < 0) { in __VGLBitmapCopy()
179 width=width+srcx; dstx-=srcx; srcx=0; in __VGLBitmapCopy()
185 width=width+dstx; srcx-=dstx; dstx=0; in __VGLBitmapCopy()
190 if (srcx+width > src->VXsize) in __VGLBitmapCopy()
191 width=src->VXsize-srcx; in __VGLBitmapCopy()
210 p = src->Bitmap+(srcline*src->VXsize+srcx)*dst->PixelBytes; in __VGLBitmapCopy()
222 VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, in VGLBitmapCopy() argument
235 __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, width, hight); in VGLBitmapCopy()
236 error = __VGLBitmapCopy(src, srcx, srcy, &VGLVDisplay, dstx, dsty, in VGLBitmapCopy()
241 srcx = dstx; in VGLBitmapCopy()
245 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, -hight); in VGLBitmapCopy()