Changeset 65296 in vbox
- Timestamp:
- Jan 14, 2017 5:25:21 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112866
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.h
r65294 r65296 69 69 #define VMSVGA_VGA_FB_BACKUP_SIZE _512K 70 70 71 /** @def VMSVGA_WITH_ BACKUP_VGA_FB71 /** @def VMSVGA_WITH_VGA_FB_BACKUP 72 72 * Enables correct VGA MMIO read/write handling when VMSVGA is enabled. It 73 73 * is SLOW and probably not entirely right, but it helps with getting 3dmark … … 77 77 /** @def VMSVGA_WITH_VGA_FB_BACKUP_AND_IN_RING3 78 78 * defined(VMSVGA_WITH_VGA_FB_BACKUP) && defined(IN_RING3) */ 79 #if defined(VMSVGA_WITH_VGA_FB_BACKUP) && defined(IN_RING3)79 #if (defined(VMSVGA_WITH_VGA_FB_BACKUP) && defined(IN_RING3)) || defined(DOXYGEN_RUNNING) 80 80 # define VMSVGA_WITH_VGA_FB_BACKUP_AND_IN_RING3 1 81 81 #else … … 85 85 /** @def VMSVGA_WITH_VGA_FB_BACKUP_AND_IN_RZ 86 86 * defined(VMSVGA_WITH_VGA_FB_BACKUP) && !defined(IN_RING3) */ 87 #if defined(VMSVGA_WITH_VGA_FB_BACKUP) && !defined(IN_RING3)87 #if (defined(VMSVGA_WITH_VGA_FB_BACKUP) && !defined(IN_RING3)) || defined(DOXYGEN_RUNNING) 88 88 # define VMSVGA_WITH_VGA_FB_BACKUP_AND_IN_RZ 1 89 89 #else
Note:
See TracChangeset
for help on using the changeset viewer.