Home | History | Annotate | Download | only in dev

Lines Matching defs:ri

147 	struct rasops_info *ri = &fb->ri;
161 ri->ri_depth = 8;
162 ri->ri_stride = (fb->fbwidth * ri->ri_depth) / 8;
164 ri->ri_flg = RI_CENTER | RI_FULLCLEAR;
166 ri->ri_flg |= RI_NO_AUTO; /* XXX */
167 ri->ri_bits = fb->fbkva;
168 ri->ri_width = fb->dwidth;
169 ri->ri_height = fb->dheight;
170 ri->ri_hw = fb;
176 rasops_init(ri, 160, 160);
177 ri->ri_flg |= RI_FORCEMONO; /* no colormap */
182 fb->wsd.ncols = ri->ri_cols;
183 fb->wsd.nrows = ri->ri_rows;
184 fb->wsd.textops = &ri->ri_ops;
185 fb->wsd.fontwidth = ri->ri_font->fontwidth;
186 fb->wsd.fontheight = ri->ri_font->fontheight;
187 fb->wsd.capabilities = ri->ri_caps;
209 wdf->width = fb->ri.ri_width;
210 wdf->height = fb->ri.ri_height;
211 wdf->depth = fb->ri.ri_depth;
215 *(u_int *)data = fb->ri.ri_stride;