Changeset 65381 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 20, 2017 9:23:53 AM (8 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/BIOS/Makefile.kmk
r64960 r65381 30 30 VBoxVgaBios386_CFLAGS = -3 31 31 VBoxVgaBios386_DEFS = VBE VBOX_BIOS_CPU=80386 32 VBoxVgaBios386_INCS = $(VBOX_GRAPHICS_INCS) 32 33 VBoxVgaBios386_SOURCES = \ 33 34 vgarom.asm \ -
trunk/src/VBox/Devices/Graphics/BIOS/vbe.h
r65193 r65381 4 4 #include "vgabios.h" 5 5 6 #include <VBox /Hardware/VBoxVideoVBE.h>6 #include <VBoxVideoVBE.h> 7 7 8 8 // DISPI helper function -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r65345 r65381 146 146 147 147 #include <VBox/VMMDev.h> 148 #include <VBox /VBoxVideo.h>148 #include <VBoxVideo.h> 149 149 #include <VBox/bioslogo.h> 150 150 -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-info.cpp
r63211 r65381 29 29 30 30 #include <VBox/vmm/pgm.h> /* required by DevVGA.h */ 31 #include <VBox /VBoxVideo.h> /* required by DevVGA.h */31 #include <VBoxVideo.h> /* required by DevVGA.h */ 32 32 33 33 /* should go BEFORE any other DevVGA include to make all DevVGA.h config defines be visible */ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r65101 r65381 39 39 #include <iprt/mem.h> 40 40 41 #include <VBox /VBoxVideo.h> /* required by DevVGA.h */41 #include <VBoxVideo.h> /* required by DevVGA.h */ 42 42 43 43 /* should go BEFORE any other DevVGA include to make all DevVGA.h config defines be visible */ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-savedstate.cpp
r63562 r65381 29 29 30 30 #include <VBox/vmm/pgm.h> /* required by DevVGA.h */ 31 #include <VBox /VBoxVideo.h> /* required by DevVGA.h */31 #include <VBoxVideo.h> /* required by DevVGA.h */ 32 32 33 33 /* should go BEFORE any other DevVGA include to make all DevVGA.h config defines be visible */ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-shared.cpp
r63562 r65381 33 33 #include <iprt/avl.h> 34 34 35 #include <VBox /VBoxVideo.h> /* required by DevVGA.h */35 #include <VBoxVideo.h> /* required by DevVGA.h */ 36 36 37 37 /* should go BEFORE any other DevVGA include to make all DevVGA.h config defines be visible */ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win.cpp
r64483 r65381 33 33 #include <iprt/avl.h> 34 34 35 #include <VBox /VBoxVideo.h> /* required by DevVGA.h */35 #include <VBoxVideo.h> /* required by DevVGA.h */ 36 36 37 37 /* should go BEFORE any other DevVGA include to make all DevVGA.h config defines be visible */ -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d.cpp
r65101 r65381 29 29 30 30 #include <VBox/vmm/pgm.h> /* required by DevVGA.h */ 31 #include <VBox /VBoxVideo.h> /* required by DevVGA.h */31 #include <VBoxVideo.h> /* required by DevVGA.h */ 32 32 33 33 /* should go BEFORE any other DevVGA include to make all DevVGA.h config defines be visible */ -
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r65303 r65381 125 125 126 126 #include <VBox/VMMDev.h> 127 #include <VBox /VBoxVideo.h>127 #include <VBoxVideo.h> 128 128 #include <VBox/bioslogo.h> 129 129 -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r65294 r65381 58 58 #endif 59 59 60 #include <VBox /Hardware/VBoxVideoVBE.h>60 #include <VBoxVideoVBE.h> 61 61 62 62 #ifdef VBOX_WITH_HGSMI … … 82 82 #ifdef CONFIG_BOCHS_VBE 83 83 84 /* Cross reference with <VBox /Hardware/VBoxVideoVBE.h> */84 /* Cross reference with <VBoxVideoVBE.h> */ 85 85 #define VBE_DISPI_INDEX_NB_SAVED 0xb /* Number of saved registers (vbe_regs array) */ 86 86 #define VBE_DISPI_INDEX_NB 0xc /* Total number of VBE registers */ -
trunk/src/VBox/Devices/Graphics/DevVGAModes.h
r65193 r65381 21 21 #ifdef VBE_NEW_DYN_LIST 22 22 23 #include <VBox /Hardware/VBoxVideoVBE.h>23 #include <VBoxVideoVBE.h> 24 24 25 25 /* VBE Mode Numbers */ -
trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp
r64766 r65381 26 26 #include <VBox/vmm/ssm.h> 27 27 #include <VBox/VMMDev.h> 28 #include <VBox /VBoxVideo.h>28 #include <VBoxVideo.h> 29 29 #include <iprt/alloc.h> 30 30 #include <iprt/assert.h> -
trunk/src/VBox/Devices/Graphics/DevVGA_VDMA.cpp
r64766 r65381 23 23 #include <VBox/vmm/pdmdev.h> 24 24 #include <VBox/vmm/pgm.h> 25 #include <VBox /VBoxVideo.h>25 #include <VBoxVideo.h> 26 26 #include <iprt/semaphore.h> 27 27 #include <iprt/thread.h> … … 34 34 #include "HGSMI/SHGSMIHost.h" 35 35 36 #include <VBox /VBoxVideo3D.h>37 #include <VBox /VBoxVideoHost3D.h>36 #include <VBoxVideo3D.h> 37 #include <VBoxVideoHost3D.h> 38 38 39 39 #ifdef DEBUG_misha -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp
r62932 r65381 72 72 73 73 #include "HGSMIHost.h" 74 #include < VBox/HGSMI/HGSMIChannels.h>75 #include < VBox/HGSMI/HGSMIChSetup.h>74 #include <HGSMIChannels.h> 75 #include <HGSMIChSetup.h> 76 76 77 77 #include "../DevVGASavedState.h" -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.h
r62514 r65381 24 24 #include <VBox/vmm/vm.h> 25 25 26 #include < VBox/HGSMI/HGSMI.h>27 #include < VBox/HGSMI/HGSMIChSetup.h>26 #include <HGSMI.h> 27 #include <HGSMIChSetup.h> 28 28 29 29 struct HGSMIINSTANCE; -
trunk/src/VBox/Devices/Graphics/HGSMI/SHGSMIHost.cpp
r62541 r65381 17 17 18 18 #include "SHGSMIHost.h" 19 #include <VBox /VBoxVideo.h>19 #include <VBoxVideo.h> 20 20 21 21 /* -
trunk/src/VBox/Devices/Graphics/shaderlib/directx.c
r63478 r65381 38 38 39 39 #ifdef VBOX_WITH_WDDM 40 # include <VBox /VBoxCrHgsmi.h>40 # include <VBoxCrHgsmi.h> 41 41 #endif 42 42 -
trunk/src/VBox/Devices/Graphics/shaderlib/wined3d_private.h
r62950 r65381 85 85 # define VBoxTlsRefSetImpl(_tls, _val) (TlsSetValue((DWORD)(_tls), (_val))) 86 86 # define VBoxTlsRefAssertImpl Assert 87 # include <VBox /VBoxVideo3D.h>87 # include <VBoxVideo3D.h> 88 88 #endif 89 89 -
trunk/src/VBox/Devices/Makefile.kmk
r65338 r65381 115 115 VBoxDD_INCS = \ 116 116 build \ 117 Network/slirp 117 Network/slirp \ 118 $(VBOX_GRAPHICS_INCS) 118 119 VBoxDD_DEFS = \ 119 120 VBOX_ACPI \ … … 901 902 902 903 # For finding and generating vbetables.h (see Graphics/BIOS/Makefile.kmk). 903 Graphics/DevVGA.cpp_INCS = $(VgaBiosBin_0_OUTDIR) 904 Graphics/DevVGA.cpp_INCS = $(VgaBiosBin_0_OUTDIR) $(VBOX_GRAPHICS_INCS) 904 905 Graphics/DevVGA.cpp_DEPS = $(VgaBiosBin_0_OUTDIR)/vbetables.h 905 906 … … 916 917 endif 917 918 VBoxDDRC_DEFS = $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,) 918 VBoxDDRC_INCS = build 919 VBoxDDRC_INCS = build $(VBOX_GRAPHICS_INCS) 919 920 VBoxDDRC_SOURCES = \ 920 921 Bus/DevPCI.cpp \ … … 1075 1076 VBoxDDR0_DEFS = IN_RT_R0 $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,) # - WTF is IN_RT_R0 doing here? 1076 1077 VBoxDDR0_DEFS.win += VBOX_WITH_WIN_PARPORT_SUP 1077 VBoxDDR0_INCS = build 1078 VBoxDDR0_INCS = build $(VBOX_GRAPHICS_INCS) 1078 1079 VBoxDDR0_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) 1079 1080 VBoxDDR0_SOURCES = \ … … 1481 1482 __stdcall= \ 1482 1483 ms_abi= 1484 VBoxSVGA3D_INCS = $(VBOX_GRAPHICS_INCS) 1483 1485 VBoxSVGA3D_INCS.win := \ 1484 1486 Graphics/shaderlib/libWineStub/include -
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r64391 r65381 83 83 /* Enable dev_vmm Log3 statements to get IRQ-related logging. */ 84 84 #define LOG_GROUP LOG_GROUP_DEV_VMM 85 #include <VBox /VBoxVideo.h> /* For VBVA definitions. */85 #include <VBoxVideo.h> /* For VBVA definitions. */ 86 86 #include <VBox/VMMDev.h> 87 87 #include <VBox/vmm/mm.h> -
trunk/src/VBox/Devices/testcase/Makefile.kmk
r65338 r65381 73 73 $(VBOX_PATH_DEVICES_SRC)/build \ 74 74 $(VBOX_PATH_DEVICES_SRC)/Bus \ 75 $(VBOX_DEVICES_TEST_OUT_DIR) 75 $(VBOX_DEVICES_TEST_OUT_DIR) \ 76 $(VBOX_GRAPHICS_INCS) 76 77 tstDeviceStructSizeRC_INCS += $(VBOX_PATH_VMM_DEVICES_SRC) 77 78 endif # VBOX_WITH_RAW_MODE … … 86 87 $(VBOX_PATH_DEVICES_SRC)/build \ 87 88 $(VBOX_PATH_DEVICES_SRC)/Bus \ 88 $(VBOX_DEVICES_TEST_OUT_DIR) 89 $(VBOX_DEVICES_TEST_OUT_DIR) \ 90 $(VBOX_GRAPHICS_INCS) 89 91 tstDeviceStructSize_SOURCES = tstDeviceStructSize.cpp 90 92 tstDeviceStructSize_CLEAN = \
Note:
See TracChangeset
for help on using the changeset viewer.