Lines Matching refs:vxres
387 int vxres, vyres; in pm3fb_fillrect() local
404 vxres = info->var.xres_virtual; in pm3fb_fillrect()
410 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_fillrect()
413 if (modded.dx + modded.width > vxres) in pm3fb_fillrect()
414 modded.width = vxres - modded.dx; in pm3fb_fillrect()
451 u32 vxres, vyres; in pm3fb_copyarea() local
463 vxres = info->var.xres_virtual; in pm3fb_copyarea()
467 modded.sx >= vxres || modded.sy >= vyres || in pm3fb_copyarea()
468 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_copyarea()
471 if (modded.sx + modded.width > vxres) in pm3fb_copyarea()
472 modded.width = vxres - modded.sx; in pm3fb_copyarea()
473 if (modded.dx + modded.width > vxres) in pm3fb_copyarea()
474 modded.width = vxres - modded.dx; in pm3fb_copyarea()