Lines Matching refs:hight
294 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in __VGLBitmapCopy() argument
305 hight=hight+srcy; dsty-=srcy; srcy=0; in __VGLBitmapCopy()
311 hight=hight+dsty; srcy-=dsty; dsty=0; in __VGLBitmapCopy()
315 if (srcy+hight > src->VYsize) in __VGLBitmapCopy()
316 hight=src->VYsize-srcy; in __VGLBitmapCopy()
319 if (dsty+hight > dst->VYsize) in __VGLBitmapCopy()
320 hight=dst->VYsize-dsty; in __VGLBitmapCopy()
321 if (width < 0 || hight < 0) in __VGLBitmapCopy()
324 for (srcline=srcy, dstline=dsty; srcline<srcy+hight; srcline++, dstline++) { in __VGLBitmapCopy()
330 for (srcline=srcy, dstline=dsty; srcline<srcy+hight; srcline++, dstline++) { in __VGLBitmapCopy()
346 for (srcline=srcy, dstline=dsty; srcline<srcy+hight; srcline++, dstline++) { in __VGLBitmapCopy()
358 VGLBitmap *dst, int dstx, int dsty, int width, int hight) in VGLBitmapCopy() argument
362 VGLMouseFreeze(dstx, dsty, width, hight, 0); in VGLBitmapCopy()
363 error = __VGLBitmapCopy(src, srcx, srcy, dst, dstx, dsty, width, hight); in VGLBitmapCopy()