Changeset 86266 in vbox
- Timestamp:
- Sep 24, 2020 2:35:34 PM (4 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA-cmd.cpp
r86265 r86266 31 31 #include "DevVGA.h" 32 32 33 /* Should be included after DevVGA.h/DevVGA-SVGA.h to pick all defines. */ 33 34 #include "DevVGA-SVGA-internal.h" 34 35 #ifdef VBOX_WITH_VMSVGA3D -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r86265 r86266 130 130 *********************************************************************************************************************************/ 131 131 #define LOG_GROUP LOG_GROUP_DEV_VMSVGA 132 #define VMSVGA_USE_EMT_HALT_CODE133 132 #include <VBox/vmm/pdmdev.h> 134 133 #include <VBox/version.h> … … 136 135 #include <VBox/log.h> 137 136 #include <VBox/vmm/pgm.h> 138 #ifdef VMSVGA_USE_EMT_HALT_CODE139 # include <VBox/vmm/vmapi.h>140 # include <VBox/vmm/vmcpuset.h>141 #endif142 137 #include <VBox/sup.h> 143 138 … … 161 156 #include "DevVGA.h" 162 157 163 #include "DevVGA-SVGA.h"164 158 #ifdef IN_RING3 159 /* Should be included after DevVGA.h/DevVGA-SVGA.h to pick all defines. */ 165 160 #include "DevVGA-SVGA-internal.h" 166 161 #endif -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.h
r86237 r86266 25 25 #endif 26 26 27 #define VMSVGA_USE_EMT_HALT_CODE 28 27 29 #include <VBox/pci.h> 28 30 #include <VBox/vmm/pdmifs.h> 29 31 #include <VBox/vmm/pdmthread.h> 30 32 #include <VBox/vmm/stam.h> 33 #ifdef VMSVGA_USE_EMT_HALT_CODE 34 # include <VBox/vmm/vmapi.h> 35 # include <VBox/vmm/vmcpuset.h> 36 #endif 31 37 32 38 /*
Note:
See TracChangeset
for help on using the changeset viewer.