Searched refs:dsty (Results 1 – 2 of 2) sorted by relevance
/freebsd/lib/libvgl/ |
H A D | bitmap.c | 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() [all …]
|
H A D | vgl.h | 108 int __VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int wid… 109 int VGLBitmapCopy(VGLBitmap *src, int srcx, int srcy, VGLBitmap *dst, int dstx, int dsty, int width…
|