Home | History | Annotate | Download | only in wrapsim

Lines Matching refs:vinfo

28     struct fb_var_screeninfo    vinfo;
56 fbState->vinfo.xres = width;
57 fbState->vinfo.yres = height;
58 fbState->vinfo.xres_virtual = width;
59 fbState->vinfo.yres_virtual = height * 2;
60 fbState->vinfo.bits_per_pixel = 16;
62 fbState->vinfo.red.offset = 11;
63 fbState->vinfo.red.length = 5;
64 fbState->vinfo.green.offset = 5;
65 fbState->vinfo.green.length = 6;
66 fbState->vinfo.blue.offset = 0;
67 fbState->vinfo.blue.length = 5;
69 fbState->vinfo.width = 51; // physical dimension, used for dpi
70 fbState->vinfo.height = 76;
72 fbState->vinfo.pixclock = 103092;
73 fbState->vinfo.upper_margin = 3;
74 fbState->vinfo.lower_margin = 227;
75 fbState->vinfo.left_margin = 12;
76 fbState->vinfo.right_margin = 8;
113 // state->displayIdx, state->vinfo.yoffset);
125 * TODO: surfaceflinger encodes the dirty region in vinfo.reserved[]. We
140 int ypage = state->vinfo.yoffset;
212 memcpy(argp, &state->vinfo, sizeof(struct fb_var_screeninfo));
215 memcpy(&state->vinfo, argp, sizeof(struct fb_var_screeninfo));
216 if (state->vinfo.activate == FB_ACTIVATE_NOW) {
219 } else if (state->vinfo.activate == FB_ACTIVATE_VBL) {
226 dev->debugName, state->vinfo.activate);