4 #define VBE_MODE_VGACOMPAT 0x20
5 #define VBE_MODE_COLOR 0x08
6 #define VBE_MODE_SUPPORTEDHW 0x01
7 #define VBE_MODE_GRAPHICS 0x10
8 #define VBE_MODE_LFB 0x80
10 #define VBE_MODE_MASK (VBE_MODE_COLOR | VBE_MODE_SUPPORTEDHW | \
11 VBE_MODE_GRAPHICS | VBE_MODE_LFB)
13 /* VBE Mode Info Block */
15 /* for all VBE revisions */
24 u16 bytes_per_scan_line
;
39 /* Direct color fields for direct/6 and YUV/7 memory models. */
40 /* Offsets are bit positions of lsb in the mask. */
49 u8 direct_color_info
; /* direct color mode attributes */
56 u16 lin_bytes_per_scan_line
;
70 } __attribute__ ((packed
));
72 #endif /* __H_TESTVBE */