Lines Matching refs:vxres
1055 int vxres, vyres; in pm2fb_fillrect() local
1067 vxres = info->var.xres_virtual; in pm2fb_fillrect()
1073 modded.dx >= vxres || modded.dy >= vyres) in pm2fb_fillrect()
1076 if (modded.dx + modded.width > vxres) in pm2fb_fillrect()
1077 modded.width = vxres - modded.dx; in pm2fb_fillrect()
1113 u32 vxres, vyres; in pm2fb_copyarea() local
1124 vxres = info->var.xres_virtual; in pm2fb_copyarea()
1128 modded.sx >= vxres || modded.sy >= vyres || in pm2fb_copyarea()
1129 modded.dx >= vxres || modded.dy >= vyres) in pm2fb_copyarea()
1132 if (modded.sx + modded.width > vxres) in pm2fb_copyarea()
1133 modded.width = vxres - modded.sx; in pm2fb_copyarea()
1134 if (modded.dx + modded.width > vxres) in pm2fb_copyarea()
1135 modded.width = vxres - modded.dx; in pm2fb_copyarea()