Lines Matching refs:vxres
380 int vxres, vyres; in pm3fb_fillrect() local
397 vxres = info->var.xres_virtual; in pm3fb_fillrect()
403 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_fillrect()
406 if (modded.dx + modded.width > vxres) in pm3fb_fillrect()
407 modded.width = vxres - modded.dx; in pm3fb_fillrect()
444 u32 vxres, vyres; in pm3fb_copyarea() local
456 vxres = info->var.xres_virtual; in pm3fb_copyarea()
460 modded.sx >= vxres || modded.sy >= vyres || in pm3fb_copyarea()
461 modded.dx >= vxres || modded.dy >= vyres) in pm3fb_copyarea()
464 if (modded.sx + modded.width > vxres) in pm3fb_copyarea()
465 modded.width = vxres - modded.sx; in pm3fb_copyarea()
466 if (modded.dx + modded.width > vxres) in pm3fb_copyarea()
467 modded.width = vxres - modded.dx; in pm3fb_copyarea()