Changeset 63480 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA.cpp
- Timestamp:
- Aug 15, 2016 2:17:54 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r63478 r63480 340 340 } 341 341 342 #ifdef IN_RING3 342 343 /** 343 344 * Reset dirty flags in a give range. … … 354 355 ASMBitClearRange(&pThis->au32DirtyBitmap[0], offVRAMStart >> PAGE_SHIFT, offVRAMEnd >> PAGE_SHIFT); 355 356 } 357 #endif /* IN_RING3 */ 356 358 357 359 #ifdef _MSC_VER … … 447 449 #endif 448 450 451 #ifdef IN_RING3 452 449 453 static const uint32_t dmask16[16] = { 450 454 PAT(0x00000000), … … 473 477 }; 474 478 475 #if defined(IN_RING3)476 479 static uint32_t expand4[256]; 477 480 static uint16_t expand2[256]; 478 481 static uint8_t expand4to8[16]; 482 479 483 #endif /* IN_RING3 */ 480 484 … … 1518 1522 } 1519 1523 1520 #if defined(IN_RING3) 1524 #ifdef IN_RING3 1525 1521 1526 typedef void vga_draw_glyph8_func(uint8_t *d, int linesize, 1522 1527 const uint8_t *font_ptr, int h, … … 2152 2157 } 2153 2158 2154 #ifdef VBOX_WITH_VMSVGA 2159 # ifdef VBOX_WITH_VMSVGA 2160 2155 2161 int vgaR3UpdateDisplay(VGAState *s, unsigned xStart, unsigned yStart, unsigned cx, unsigned cy) 2156 2162 { … … 2332 2338 return VINF_SUCCESS; 2333 2339 } 2334 #endif /* VBOX_WITH_VMSVGA */ 2340 2341 # endif /* VBOX_WITH_VMSVGA */ 2335 2342 2336 2343 /*
Note:
See TracChangeset
for help on using the changeset viewer.