Lines Matching refs:dsty
165 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in __VGLBitmapCopy() argument
174 VGLMouseOverlap(dstx, dsty, width, hight)); in __VGLBitmapCopy()
179 || dstx>dst->VXsize || dsty>dst->VYsize) in __VGLBitmapCopy()
185 hight=hight+srcy; dsty-=srcy; srcy=0; in __VGLBitmapCopy()
190 if (dsty < 0) { in __VGLBitmapCopy()
191 hight=hight+dsty; srcy-=dsty; dsty=0; in __VGLBitmapCopy()
199 if (dsty+hight > dst->VYsize) in __VGLBitmapCopy()
200 hight=dst->VYsize-dsty; in __VGLBitmapCopy()
206 if (src->Bitmap == dst->Bitmap && srcy < dsty) { in __VGLBitmapCopy()
211 for (srcline = srcy + yextra, dstline = dsty + yextra; srcline != yend; in __VGLBitmapCopy()
226 VGLBitmap *dst, int dstx, int dsty, int width, int hight) 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()
245 srcy = dsty; in VGLBitmapCopy()
248 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, -hight); in VGLBitmapCopy()