Changeset 473 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA.h
- Timestamp:
- Jan 31, 2007 9:52:32 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.h
r1 r473 56 56 57 57 #ifdef VBOX 58 #define VBE_DISPI_MAX_BPP 3259 #endif60 61 #ifdef VBOX62 58 #define VBE_DISPI_MAX_XRES 16384 63 59 #define VBE_DISPI_MAX_YRES 16384 64 60 #else 65 #define VBE_DISPI_MAX_XRES 1024 66 #define VBE_DISPI_MAX_YRES 768 67 #endif 61 #define VBE_DISPI_MAX_XRES 1600 62 #define VBE_DISPI_MAX_YRES 1200 63 #endif 64 #define VBE_DISPI_MAX_BPP 32 68 65 69 66 #define VBE_DISPI_INDEX_ID 0x0 … … 85 82 #define VBE_DISPI_DISABLED 0x00 86 83 #define VBE_DISPI_ENABLED 0x01 87 #ifdef VBOX88 84 #define VBE_DISPI_GETCAPS 0x02 89 85 #define VBE_DISPI_8BIT_DAC 0x20 90 #endif91 86 #define VBE_DISPI_LFB_ENABLED 0x40 92 87 #define VBE_DISPI_NOCLEARMEM 0x80 … … 141 136 void (*get_offsets)(struct VGAState *s, \ 142 137 uint32_t *pline_offset, \ 143 uint32_t *pstart_addr); \ 138 uint32_t *pstart_addr, \ 139 uint32_t *pline_compare); \ 144 140 void (*get_resolution)(struct VGAState *s, \ 145 141 int *pwidth, \ … … 175 171 struct VGAState; 176 172 typedef int FNGETBPP(struct VGAState *s); 177 typedef void FNGETOFFSETS(struct VGAState *s, uint32_t *pline_offset, uint32_t *pstart_addr );173 typedef void FNGETOFFSETS(struct VGAState *s, uint32_t *pline_offset, uint32_t *pstart_addr, uint32_t *pline_compare); 178 174 typedef void FNGETRESOLUTION(struct VGAState *s, int *pwidth, int *pheight); 179 175 typedef unsigned int FNRGBTOPIXEL(unsigned int r, unsigned int g, unsigned b);
Note:
See TracChangeset
for help on using the changeset viewer.