Lines Matching refs:vxres
1048 int vxres, vyres; in pm2fb_fillrect() local
1060 vxres = info->var.xres_virtual; in pm2fb_fillrect()
1066 modded.dx >= vxres || modded.dy >= vyres) in pm2fb_fillrect()
1069 if (modded.dx + modded.width > vxres) in pm2fb_fillrect()
1070 modded.width = vxres - modded.dx; in pm2fb_fillrect()
1106 u32 vxres, vyres; in pm2fb_copyarea() local
1117 vxres = info->var.xres_virtual; in pm2fb_copyarea()
1121 modded.sx >= vxres || modded.sy >= vyres || in pm2fb_copyarea()
1122 modded.dx >= vxres || modded.dy >= vyres) in pm2fb_copyarea()
1125 if (modded.sx + modded.width > vxres) in pm2fb_copyarea()
1126 modded.width = vxres - modded.sx; in pm2fb_copyarea()
1127 if (modded.dx + modded.width > vxres) in pm2fb_copyarea()
1128 modded.width = vxres - modded.dx; in pm2fb_copyarea()