Lines Matching refs:dsty
162 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in __VGLBitmapCopy() argument
171 VGLMouseOverlap(dstx, dsty, width, hight)); in __VGLBitmapCopy()
176 || dstx>dst->VXsize || dsty>dst->VYsize) in __VGLBitmapCopy()
182 hight=hight+srcy; dsty-=srcy; srcy=0; in __VGLBitmapCopy()
187 if (dsty < 0) { in __VGLBitmapCopy()
188 hight=hight+dsty; srcy-=dsty; dsty=0; in __VGLBitmapCopy()
196 if (dsty+hight > dst->VYsize) in __VGLBitmapCopy()
197 hight=dst->VYsize-dsty; in __VGLBitmapCopy()
203 if (src->Bitmap == dst->Bitmap && srcy < dsty) { in __VGLBitmapCopy()
208 for (srcline = srcy + yextra, dstline = dsty + yextra; srcline != yend; in __VGLBitmapCopy()
223 VGLBitmap *dst, int dstx, int dsty, int width, int hight) 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()
242 srcy = dsty; in VGLBitmapCopy()
245 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, -hight); in VGLBitmapCopy()