Lines Matching refs:vxres
182 int vxres, vyres; in unifb_fillrect() local
189 vxres = info->var.xres_virtual; in unifb_fillrect()
195 modded.dx >= vxres || modded.dy >= vyres) in unifb_fillrect()
198 if (modded.dx + modded.width > vxres) in unifb_fillrect()
199 modded.width = vxres - modded.dx; in unifb_fillrect()
288 u32 vxres, vyres; in unifb_copyarea() local
301 vxres = info->var.xres_virtual; in unifb_copyarea()
305 modded.sx >= vxres || modded.sy >= vyres || in unifb_copyarea()
306 modded.dx >= vxres || modded.dy >= vyres) in unifb_copyarea()
309 if (modded.sx + modded.width > vxres) in unifb_copyarea()
310 modded.width = vxres - modded.sx; in unifb_copyarea()
311 if (modded.dx + modded.width > vxres) in unifb_copyarea()
312 modded.width = vxres - modded.dx; in unifb_copyarea()