VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3DCmn.h@ 34345

Last change on this file since 34345 was 34345, checked in by vboxsync, 14 years ago

wddm/3d: propper hide host window on swapchain destruction

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
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#ifdef VBOX_WITH_CRHGSMI
36#include "VBoxUhgsmiBase.h"
37#include "VBoxUhgsmiDisp.h"
38#include "VBoxUhgsmiKmt.h"
39#endif
40#include "VBoxDispD3D.h"
41
42#ifdef DEBUG
43# define VBOXWDDMDISP_DEBUG
44# define VBOXWDDMDISP_DEBUG_FLOW
45# define VBOXWDDMDISP_DEBUG_DUMPSURFDATA
46# define VBOXWDDMDISP_DEBUG_VEHANDLER
47#endif
48
49//#define VBOXWDDMDISP_DEBUG_VEHANDLER
50
51#if defined(VBOXWDDMDISP_DEBUG) || defined(VBOX_WDDMDISP_WITH_PROFILE) || defined(VBOXWDDM_TEST_UHGSMI)
52# define VBOXWDDMDISP_DEBUG_PRINT
53#endif
54
55#if 0
56# ifdef Assert
57# undef Assert
58# define Assert(_a) do{}while(0)
59# endif
60# ifdef AssertBreakpoint
61# undef AssertBreakpoint
62# define AssertBreakpoint() do{}while(0)
63# endif
64# ifdef AssertFailed
65# undef AssertFailed
66# define AssertFailed() do{}while(0)
67# endif
68#endif
69
70#ifdef VBOXWDDMDISP_DEBUG_PRINT
71VOID vboxVDbgDoMpPrintF(const PVBOXWDDMDISP_DEVICE pDevice, LPCSTR szString, ...);
72VOID vboxVDbgDoMpPrint(const PVBOXWDDMDISP_DEVICE pDevice, LPCSTR szString);
73VOID vboxVDbgDoPrint(LPCSTR szString, ...);
74#endif
75
76#ifdef VBOXWDDMDISP_DEBUG_VEHANDLER
77void vboxVDbgVEHandlerRegister();
78void vboxVDbgVEHandlerUnregister();
79#endif
80
81#ifdef VBOXWDDMDISP_DEBUG
82extern bool g_VDbgTstDumpEnable;
83extern bool g_VDbgTstDumpOnSys2VidSameSizeEnable;
84
85VOID vboxVDbgDoDumpAllocData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, PVBOXWDDMDISP_ALLOCATION pAlloc, const RECT *pRect, const char* pSuffix);
86VOID vboxVDbgDoDumpAllocSurfData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, PVBOXWDDMDISP_ALLOCATION pAlloc, IDirect3DSurface9 *pSurf, const RECT *pRect, const char* pSuffix);
87VOID vboxVDbgDoDumpSurfData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const RECT *pRect, IDirect3DSurface9 *pSurf, const char* pSuffix);
88void vboxVDbgDoMpPrintRect(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const RECT *pRect, const char * pSuffix);
89void vboxVDbgDoMpPrintAlloc(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const char * pSuffix);
90
91#define vboxVDbgBreak() AssertBreakpoint()
92#define vboxVDbgPrint(_m) \
93 do { \
94 vboxVDbgDoPrint _m ; \
95 } while (0)
96#define vboxVDbgPrintR vboxVDbgPrint
97#define vboxVDbgMpPrint(_m) \
98 do { \
99 vboxVDbgDoMpPrint _m ; \
100 } while (0)
101#define vboxVDbgMpPrintF(_m) \
102 do { \
103 vboxVDbgDoMpPrintF _m ; \
104 } while (0)
105#define vboxVDbgMpPrintRect(_m) \
106 do { \
107 vboxVDbgDoMpPrintRect _m ; \
108 } while (0)
109#define vboxVDbgMpPrintAlloc(_m) \
110 do { \
111 vboxVDbgDoMpPrintAlloc _m ; \
112 } while (0)
113#ifdef VBOXWDDMDISP_DEBUG_DUMPSURFDATA
114#define vboxVDbgDumpSurfData(_m) \
115 do { \
116 vboxVDbgDoDumpSurfData _m ; \
117 } while (0)
118#define vboxVDbgDumpAllocSurfData(_m) \
119 do { \
120 vboxVDbgDoDumpAllocSurfData _m ; \
121 } while (0)
122#define vboxVDbgDumpAllocData(_m) \
123 do { \
124 vboxVDbgDoDumpAllocData _m ; \
125 } while (0)
126#else
127#define vboxVDbgDumpSurfData(_m) do {} while (0)
128#endif
129#ifdef VBOXWDDMDISP_DEBUG_FLOW
130# define vboxVDbgPrintF vboxVDbgPrint
131#else
132# define vboxVDbgPrintF(_m) do {} while (0)
133#endif
134#else
135#define vboxVDbgMpPrint(_m) do {} while (0)
136#define vboxVDbgMpPrintF(_m) do {} while (0)
137#define vboxVDbgMpPrintRect(_m) do {} while (0)
138#define vboxVDbgMpPrintAlloc(_m) do {} while (0)
139#define vboxVDbgDumpSurfData(_m) do {} while (0)
140#define vboxVDbgDumpAllocSurfData(_m) do {} while (0)
141#define vboxVDbgDumpAllocData(_m) do {} while (0)
142#define vboxVDbgBreak() do {} while (0)
143#define vboxVDbgPrint(_m) do {} while (0)
144#define vboxVDbgPrintR vboxVDbgPrint
145#define vboxVDbgPrintF vboxVDbgPrint
146#endif
147
148# ifdef VBOXWDDMDISP
149# define VBOXWDDMDISP_DECL(_type) DECLEXPORT(_type)
150# else
151# define VBOXWDDMDISP_DECL(_type) DECLIMPORT(_type)
152# endif
153
154#endif /* #ifndef ___VBoxDispD3DCmn_h___ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette