1 | /* $Id: VBoxDispD3DCmn.h 62522 2016-07-22 19:17:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxVideo Display D3D User mode dll
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2016 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___VBoxDispD3DCmn_h___
|
---|
19 | #define ___VBoxDispD3DCmn_h___
|
---|
20 |
|
---|
21 | #include "VBoxDispD3DBase.h"
|
---|
22 |
|
---|
23 | #include <iprt/initterm.h>
|
---|
24 | #include <iprt/log.h>
|
---|
25 | #include <iprt/mem.h>
|
---|
26 |
|
---|
27 | #include <VBox/Log.h>
|
---|
28 |
|
---|
29 | #include <VBox/VBoxGuestLib.h>
|
---|
30 |
|
---|
31 | #include "VBoxDispDbg.h"
|
---|
32 | #include "VBoxDispD3DIf.h"
|
---|
33 | #include "../../common/wddm/VBoxMPIf.h"
|
---|
34 | #include "VBoxDispCm.h"
|
---|
35 | #include "VBoxDispMpInternal.h"
|
---|
36 | #include "VBoxDispKmt.h"
|
---|
37 | #ifdef VBOX_WITH_CRHGSMI
|
---|
38 | #include "VBoxUhgsmiBase.h"
|
---|
39 | #include "VBoxUhgsmiDisp.h"
|
---|
40 | #include "VBoxUhgsmiKmt.h"
|
---|
41 | #endif
|
---|
42 | #include "VBoxDispD3D.h"
|
---|
43 | #ifndef IN_VBOXCRHGSMI
|
---|
44 | #include "VBoxD3DIf.h"
|
---|
45 | #endif
|
---|
46 | #ifdef VBOX_WITH_CROGL
|
---|
47 | #include <cr_protocol.h>
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | # ifdef VBOXWDDMDISP
|
---|
51 | # define VBOXWDDMDISP_DECL(_type) DECLEXPORT(_type)
|
---|
52 | # else
|
---|
53 | # define VBOXWDDMDISP_DECL(_type) DECLIMPORT(_type)
|
---|
54 | # endif
|
---|
55 |
|
---|
56 | #endif /* #ifndef ___VBoxDispD3DCmn_h___ */
|
---|