Last change
on this file since 30464 was 30464, checked in by vboxsync, 14 years ago |
wddm/3d: missing files for dirty rects
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.2 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 ___VBoxDispMp_h___
|
---|
16 | #define ___VBoxDispMp_h___
|
---|
17 |
|
---|
18 | #include <windows.h>
|
---|
19 | #include <d3d9types.h>
|
---|
20 | #include <D3dumddi.h>
|
---|
21 | #include <d3dhal.h>
|
---|
22 | #include "../../Miniport/wddm/VBoxVideoIf.h"
|
---|
23 |
|
---|
24 | HRESULT vboxDispMpEnable();
|
---|
25 | HRESULT vboxDispMpDisable();
|
---|
26 |
|
---|
27 | typedef struct VBOXDISPMP_REGIONS
|
---|
28 | {
|
---|
29 | HWND hWnd;
|
---|
30 | PVBOXVIDEOCM_CMD_RECTS pRegions;
|
---|
31 | } VBOXDISPMP_REGIONS, *PVBOXDISPMP_REGIONS;
|
---|
32 |
|
---|
33 | /*
|
---|
34 | * the VBOXDISPMP_REGIONS::pRegions returned is valid until the next vboxDispMpGetRegions call or vboxDispMpDisable call
|
---|
35 | */
|
---|
36 | HRESULT vboxDispMpGetRegions(PVBOXDISPMP_REGIONS pRegions, DWORD dwMilliseconds);
|
---|
37 |
|
---|
38 | #endif /* #ifndef ___VBoxDispMp_h___ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.