Home | History | Annotate | Download | only in gdium

Lines Matching refs:ri

67 	struct rasops_info * const ri = &gdium_console_screen.scr_ri;
74 ri->ri_width = 1024;
75 ri->ri_height = 600;
76 ri->ri_depth = 16;
77 ri->ri_stride = 0x800;
83 ri->ri_bits = (char *)MIPS_PHYS_TO_KSEG1(BONITO_PCILO_BASE + reg);
84 ri->ri_flg = RI_CENTER | RI_NO_AUTO;
86 memset(ri->ri_bits, 0, 0x200000);
89 rasops_init(ri, 30, 80);
91 rasops_reconfig(ri, ri->ri_height / ri->ri_font->fontheight,
92 ri->ri_width / ri->ri_font->fontwidth);
94 gdium_stdscreen.nrows = ri->ri_rows;
95 gdium_stdscreen.ncols = ri->ri_cols;
96 gdium_stdscreen.textops = &ri->ri_ops;
97 gdium_stdscreen.capabilities = ri->ri_caps;
99 ri->ri_ops.allocattr(ri, 0, ri->ri_rows - 1, 0, &defattr);
101 wsdisplay_preattach(&gdium_stdscreen, ri, 0, 0, defattr);