VirtualBox

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

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

wddm/3d: fix black regions on Aero start for Win7

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.5 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 vboxVDbgDoPrint(LPCSTR szString, ...);
73#endif
74
75#ifdef VBOXWDDMDISP_DEBUG_VEHANDLER
76void vboxVDbgVEHandlerRegister();
77void vboxVDbgVEHandlerUnregister();
78#endif
79
80#ifdef VBOXWDDMDISP_DEBUG
81extern bool g_VDbgTstDumpEnable;
82extern bool g_VDbgTstDumpOnSys2VidSameSizeEnable;
83
84VOID vboxVDbgDoDumpAllocData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, PVBOXWDDMDISP_ALLOCATION pAlloc, const RECT *pRect, const char* pSuffix);
85VOID vboxVDbgDoDumpAllocSurfData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, PVBOXWDDMDISP_ALLOCATION pAlloc, IDirect3DSurface9 *pSurf, const RECT *pRect, const char* pSuffix);
86VOID vboxVDbgDoDumpSurfData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const RECT *pRect, IDirect3DSurface9 *pSurf, const char* pSuffix);
87void vboxVDbgDoMpPrintRect(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const RECT *pRect, const char * pSuffix);
88void vboxVDbgDoMpPrintAlloc(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const char * pSuffix);
89
90#define vboxVDbgBreak() AssertBreakpoint()
91#define vboxVDbgPrint(_m) \
92 do { \
93 vboxVDbgDoPrint _m ; \
94 } while (0)
95#define vboxVDbgPrintR vboxVDbgPrint
96#define vboxVDbgMpPrint(_m) \
97 do { \
98 vboxVDbgDoMpPrintF _m ; \
99 } while (0)
100#define vboxVDbgMpPrintRect(_m) \
101 do { \
102 vboxVDbgDoMpPrintRect _m ; \
103 } while (0)
104#define vboxVDbgMpPrintAlloc(_m) \
105 do { \
106 vboxVDbgDoMpPrintAlloc _m ; \
107 } while (0)
108#ifdef VBOXWDDMDISP_DEBUG_DUMPSURFDATA
109#define vboxVDbgDumpSurfData(_m) \
110 do { \
111 vboxVDbgDoDumpSurfData _m ; \
112 } while (0)
113#define vboxVDbgDumpAllocSurfData(_m) \
114 do { \
115 vboxVDbgDoDumpAllocSurfData _m ; \
116 } while (0)
117#define vboxVDbgDumpAllocData(_m) \
118 do { \
119 vboxVDbgDoDumpAllocData _m ; \
120 } while (0)
121#else
122#define vboxVDbgDumpSurfData(_m) do {} while (0)
123#endif
124#ifdef VBOXWDDMDISP_DEBUG_FLOW
125# define vboxVDbgPrintF vboxVDbgPrint
126#else
127# define vboxVDbgPrintF(_m) do {} while (0)
128#endif
129#else
130#define vboxVDbgMpPrint(_m) do {} while (0)
131#define vboxVDbgMpPrintRect(_m) do {} while (0)
132#define vboxVDbgMpPrintAlloc(_m) do {} while (0)
133#define vboxVDbgDumpSurfData(_m) do {} while (0)
134#define vboxVDbgDumpAllocSurfData(_m) do {} while (0)
135#define vboxVDbgDumpAllocData(_m) do {} while (0)
136#define vboxVDbgBreak() do {} while (0)
137#define vboxVDbgPrint(_m) do {} while (0)
138#define vboxVDbgPrintR vboxVDbgPrint
139#define vboxVDbgPrintF vboxVDbgPrint
140#endif
141
142# ifdef VBOXWDDMDISP
143# define VBOXWDDMDISP_DECL(_type) DECLEXPORT(_type)
144# else
145# define VBOXWDDMDISP_DECL(_type) DECLIMPORT(_type)
146# endif
147
148#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