1 | /** @file
|
---|
2 | *
|
---|
3 | * VBoxVideo Display D3D User mode dll
|
---|
4 | *
|
---|
5 | * Copyright (C) 2010 Oracle Corporation
|
---|
6 | *
|
---|
7 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | * available from http://www.virtualbox.org. This file is free software;
|
---|
9 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | * General Public License (GPL) as published by the Free Software
|
---|
11 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | */
|
---|
15 | #ifndef ___VBoxDispD3DCmn_h___
|
---|
16 | #define ___VBoxDispD3DCmn_h___
|
---|
17 |
|
---|
18 | #include <windows.h>
|
---|
19 | #include <d3d9types.h>
|
---|
20 | //#include <d3dtypes.h>
|
---|
21 | #include <D3dumddi.h>
|
---|
22 | #include <d3dhal.h>
|
---|
23 |
|
---|
24 | #include <iprt/initterm.h>
|
---|
25 | #include <iprt/log.h>
|
---|
26 | #include <iprt/mem.h>
|
---|
27 |
|
---|
28 | #include <VBox/Log.h>
|
---|
29 |
|
---|
30 | #include <VBox/VBoxGuestLib.h>
|
---|
31 |
|
---|
32 | #include "VBoxDispD3DIf.h"
|
---|
33 | #include "../../Miniport/wddm/VBoxVideoIf.h"
|
---|
34 | #include "VBoxDispCm.h"
|
---|
35 | #include "VBoxDispD3D.h"
|
---|
36 |
|
---|
37 | #ifdef DEBUG
|
---|
38 | # define VBOXWDDMDISP_DEBUG
|
---|
39 | # define VBOXWDDMDISP_DEBUG_FLOW
|
---|
40 | #endif
|
---|
41 |
|
---|
42 | #if 0
|
---|
43 | # ifdef Assert
|
---|
44 | # undef Assert
|
---|
45 | # define Assert(_a) do{}while(0)
|
---|
46 | # endif
|
---|
47 | # ifdef AssertBreakpoint
|
---|
48 | # undef AssertBreakpoint
|
---|
49 | # define AssertBreakpoint() do{}while(0)
|
---|
50 | # endif
|
---|
51 | # ifdef AssertFailed
|
---|
52 | # undef AssertFailed
|
---|
53 | # define AssertFailed() do{}while(0)
|
---|
54 | # endif
|
---|
55 | #endif
|
---|
56 |
|
---|
57 | #ifdef VBOXWDDMDISP_DEBUG
|
---|
58 | VOID vboxVDbgDoPrint(LPCSTR szString, ...);
|
---|
59 | void vboxVDbgVEHandlerRegister();
|
---|
60 | void vboxVDbgVEHandlerUnregister();
|
---|
61 |
|
---|
62 | #define vboxVDbgBreak() AssertBreakpoint()
|
---|
63 | #define vboxVDbgPrint(_m) \
|
---|
64 | do { \
|
---|
65 | vboxVDbgDoPrint _m ; \
|
---|
66 | } while (0)
|
---|
67 | #define vboxVDbgPrintR vboxVDbgPrint
|
---|
68 | #ifdef VBOXWDDMDISP_DEBUG_FLOW
|
---|
69 | # define vboxVDbgPrintF vboxVDbgPrint
|
---|
70 | #else
|
---|
71 | # define vboxVDbgPrintF(_m) do {} while (0)
|
---|
72 | #endif
|
---|
73 | #else
|
---|
74 | #define vboxVDbgBreak() do {} while (0)
|
---|
75 | #define vboxVDbgPrint(_m) do {} while (0)
|
---|
76 | #define vboxVDbgPrintR vboxVDbgPrint
|
---|
77 | #define vboxVDbgPrintF vboxVDbgPrint
|
---|
78 | #endif
|
---|
79 |
|
---|
80 | #endif /* #ifndef ___VBoxDispD3DCmn_h___ */
|
---|