Changeset 33974 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Nov 11, 2010 11:12:27 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGATmpl.h
r32404 r33974 57 57 58 58 static inline void glue(vga_draw_glyph_line_, DEPTH)(uint8_t *d, 59 uint32_t font_data,59 int font_data, 60 60 uint32_t xorcol, 61 61 uint32_t bgcol) … … 85 85 uint32_t fgcol, uint32_t bgcol) 86 86 { 87 uint32_t font_data, xorcol; 87 uint32_t xorcol; 88 int font_data; 88 89 89 90 xorcol = bgcol ^ fgcol; … … 100 101 uint32_t fgcol, uint32_t bgcol) 101 102 { 102 uint32_t font_data, xorcol; 103 uint32_t xorcol; 104 int font_data; 103 105 104 106 xorcol = bgcol ^ fgcol; … … 120 122 uint32_t fgcol, uint32_t bgcol, int dup9) 121 123 { 122 uint32_t font_data, xorcol, v; 124 uint32_t xorcol, v; 125 int font_data; 123 126 124 127 xorcol = bgcol ^ fgcol;
Note:
See TracChangeset
for help on using the changeset viewer.