VirtualBox

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

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

wddm/3d: chromium hgsmi working (still disabled to make some cleaning)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 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 vboxVDbgDoDumpSurfData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const RECT *pRect, IDirect3DSurface9 *pSurf, const char* pSuffix);
85void vboxVDbgDoMpPrintRect(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const RECT *pRect, const char * pSuffix);
86void vboxVDbgDoMpPrintAlloc(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const char * pSuffix);
87
88#define vboxVDbgBreak() AssertBreakpoint()
89#define vboxVDbgPrint(_m) \
90 do { \
91 vboxVDbgDoPrint _m ; \
92 } while (0)
93#define vboxVDbgPrintR vboxVDbgPrint
94#define vboxVDbgMpPrint(_m) \
95 do { \
96 vboxVDbgDoMpPrintF _m ; \
97 } while (0)
98#define vboxVDbgMpPrintRect(_m) \
99 do { \
100 vboxVDbgDoMpPrintRect _m ; \
101 } while (0)
102#define vboxVDbgMpPrintAlloc(_m) \
103 do { \
104 vboxVDbgDoMpPrintAlloc _m ; \
105 } while (0)
106#ifdef VBOXWDDMDISP_DEBUG_DUMPSURFDATA
107#define vboxVDbgDumpSurfData(_m) \
108 do { \
109 vboxVDbgDoDumpSurfData _m ; \
110 } while (0)
111#else
112#define vboxVDbgDumpSurfData(_m) do {} while (0)
113#endif
114#ifdef VBOXWDDMDISP_DEBUG_FLOW
115# define vboxVDbgPrintF vboxVDbgPrint
116#else
117# define vboxVDbgPrintF(_m) do {} while (0)
118#endif
119#else
120#define vboxVDbgMpPrint(_m) do {} while (0)
121#define vboxVDbgMpPrintRect(_m) do {} while (0)
122#define vboxVDbgMpPrintAlloc(_m) do {} while (0)
123#define vboxVDbgDumpSurfData(_m) do {} while (0)
124#define vboxVDbgBreak() do {} while (0)
125#define vboxVDbgPrint(_m) do {} while (0)
126#define vboxVDbgPrintR vboxVDbgPrint
127#define vboxVDbgPrintF vboxVDbgPrint
128#endif
129
130# ifdef VBOXWDDMDISP
131# define VBOXWDDMDISP_DECL(_type) DECLEXPORT(_type)
132# else
133# define VBOXWDDMDISP_DECL(_type) DECLIMPORT(_type)
134# endif
135
136#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