VirtualBox

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

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

wddm/3d: more debugging

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 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#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
58VOID vboxVDbgDoDumpSurfData(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const RECT *pRect, IDirect3DSurface9 *pSurf, const char* pSuffix);
59void vboxVDbgDoMpPrintRect(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const RECT *pRect, const char * pSuffix);
60void vboxVDbgDoMpPrintAlloc(const PVBOXWDDMDISP_DEVICE pDevice, const char * pPrefix, const PVBOXWDDMDISP_RESOURCE pRc, uint32_t iAlloc, const char * pSuffix);
61VOID vboxVDbgDoPrint(LPCSTR szString, ...);
62VOID vboxVDbgDoMpPrintF(const PVBOXWDDMDISP_DEVICE pDevice, LPCSTR szString, ...);
63void vboxVDbgVEHandlerRegister();
64void vboxVDbgVEHandlerUnregister();
65
66#define vboxVDbgBreak() AssertBreakpoint()
67#define vboxVDbgPrint(_m) \
68 do { \
69 vboxVDbgDoPrint _m ; \
70 } while (0)
71#define vboxVDbgPrintR vboxVDbgPrint
72#define vboxVDbgMpPrint(_m) \
73 do { \
74 vboxVDbgDoMpPrintF _m ; \
75 } while (0)
76#define vboxVDbgMpPrintRect(_m) \
77 do { \
78 vboxVDbgDoMpPrintRect _m ; \
79 } while (0)
80#define vboxVDbgMpPrintAlloc(_m) \
81 do { \
82 vboxVDbgDoMpPrintAlloc _m ; \
83 } while (0)
84#define vboxVDbgDumpSurfData(_m) \
85 do { \
86 vboxVDbgDoDumpSurfData _m ; \
87 } while (0)
88#ifdef VBOXWDDMDISP_DEBUG_FLOW
89# define vboxVDbgPrintF vboxVDbgPrint
90#else
91# define vboxVDbgPrintF(_m) do {} while (0)
92#endif
93#else
94#define vboxVDbgMpPrint(_m) do {} while (0)
95#define vboxVDbgMpPrintRect(_m) do {} while (0)
96#define vboxVDbgMpPrintAlloc(_m) do {} while (0)
97#define vboxVDbgDumpSurfData(_m) do {} while (0)
98#define vboxVDbgBreak() do {} while (0)
99#define vboxVDbgPrint(_m) do {} while (0)
100#define vboxVDbgPrintR vboxVDbgPrint
101#define vboxVDbgPrintF vboxVDbgPrint
102#endif
103
104#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