Changeset 30405 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Display
- Timestamp:
- Jun 23, 2010 8:52:35 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Display
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/Makefile.kmk
r29488 r30405 76 76 endif 77 77 VBoxDispD3D_TEMPLATE = VBOXGUESTR3DLL 78 VBoxDispD3D_DEFS = UNICODE _UNICODE 78 VBoxDispD3D_DEFS = UNICODE _UNICODE VBOXWDDM VBOXVDMA 79 ifdef VBOXWDDM_WITH_VBVA 80 VBoxDispD3D_DEFS += VBOXWDDM_WITH_VBVA 81 endif 82 79 83 ifdef VBOX_WITH_VIDEOHWACCEL 80 84 VBoxDispD3D_DEFS += VBOX_WITH_VIDEOHWACCEL … … 83 87 wddm/VBoxDispD3D.cpp \ 84 88 wddm/VBoxDispD3DIf.cpp \ 89 wddm/VBoxDispCm.cpp \ 85 90 wddm/VBoxDispD3D.def \ 86 91 wddm/VBoxDispD3D.rc -
trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.cpp
r30346 r30405 13 13 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 14 14 */ 15 #include <windows.h>16 #include <d3d9types.h>17 //#include <d3dtypes.h>18 #include <D3dumddi.h>19 #include <d3dhal.h>20 21 22 15 #include <iprt/initterm.h> 23 16 #include <iprt/log.h> … … 28 21 #include <VBox/VBoxGuestLib.h> 29 22 23 #include "VBoxDispD3DCmn.h" 30 24 #include "VBoxDispD3D.h" 31 #include "VBoxDispD3DCmn.h"32 25 33 26 #ifdef VBOXWDDMDISP_DEBUG -
trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.h
r30215 r30405 20 20 21 21 #include <iprt/cdefs.h> 22 #include <iprt/list.h> 22 23 23 24 #define VBOXWDDMDISP_MAX_VERTEX_STREAMS 16 … … 60 61 typedef struct VBOXWDDMDISP_CONTEXT 61 62 { 63 RTLISTNODE ListNode; 62 64 struct VBOXWDDMDISP_DEVICE *pDevice; 63 65 D3DDDICB_CREATECONTEXT ContextInfo; -
trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3DCmn.h
r30133 r30405 21 21 #include <D3dumddi.h> 22 22 #include <d3dhal.h> 23 24 23 25 24 #include <iprt/initterm.h>
Note:
See TracChangeset
for help on using the changeset viewer.