Lines Matching refs:vxres
1057 int vxres, vyres; in pm2fb_fillrect() local
1069 vxres = info->var.xres_virtual; in pm2fb_fillrect()
1075 modded.dx >= vxres || modded.dy >= vyres) in pm2fb_fillrect()
1078 if (modded.dx + modded.width > vxres) in pm2fb_fillrect()
1079 modded.width = vxres - modded.dx; in pm2fb_fillrect()
1115 u32 vxres, vyres; in pm2fb_copyarea() local
1126 vxres = info->var.xres_virtual; in pm2fb_copyarea()
1130 modded.sx >= vxres || modded.sy >= vyres || in pm2fb_copyarea()
1131 modded.dx >= vxres || modded.dy >= vyres) in pm2fb_copyarea()
1134 if (modded.sx + modded.width > vxres) in pm2fb_copyarea()
1135 modded.width = vxres - modded.sx; in pm2fb_copyarea()
1136 if (modded.dx + modded.width > vxres) in pm2fb_copyarea()
1137 modded.width = vxres - modded.dx; in pm2fb_copyarea()