Lines Matching defs:fbdevice
35 struct fbdevice { struct
36 int fb_major; /* XXX */
37 struct fbtype fb_type; /* what it says */
38 caddr_t fb_pixels; /* display RAM */
39 int fb_linebytes; /* bytes per display line */
41 struct fbdriver *fb_driver; /* pointer to driver */
42 struct device *fb_device; /* parameter for fbd_unblank */
45 u_int fb_bits; /* see defines below */
46 int fb_ringing; /* bell currently ringing */
47 int fb_belldepth; /* audible bell depth */
48 int fb_scroll; /* stupid sun scroll mode */
50 int fb_p0; /* escape sequence parameter 0 */
51 int fb_p1; /* escape sequence parameter 1 */
53 int *fb_row; /* emulator row */
54 int *fb_col; /* emulator column */
56 int fb_maxrow; /* emulator height of screen */
57 int fb_maxcol; /* emulator width of screen */
59 int fb_emuwidth; /* emulator screen width */
60 int fb_emuheight; /* emulator screen height */
84 void fbattach __P((struct fbdevice *)); argument