Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
58bcc0ae
Commit
58bcc0ae
authored
Jul 15, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi.idl: Added IDXGIResource, IDXGIAdapter1 and IDXGIFactory1 declarations.
parent
56d7e2ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
+56
-0
dxgi.idl
include/dxgi.idl
+56
-0
No files found.
include/dxgi.idl
View file @
58bcc0ae
...
...
@@ -178,6 +178,20 @@ interface IDXGIDeviceSubObject : IDXGIObject
[
object
,
uuid
(
035
f3ab4
-482e-4
e50
-
b41f
-
8
a7f8bd8960b
),
local
,
pointer_default
(
unique
)
]
interface
IDXGIResource
:
IDXGIDeviceSubObject
{
HRESULT
GetSharedHandle
(
[
out
]
HANDLE
*
pSharedHandle
)
;
HRESULT
GetUsage
(
[
out
]
DXGI_USAGE
*
pUsage
)
;
HRESULT
SetEvictionPriority
(
[
in
]
UINT
EvictionPriority
)
;
HRESULT
GetEvictionPriority
(
[
out
,
retval
]
UINT
*
pEvictionPriority
)
;
}
[
object
,
local
,
uuid
(
cafcb56c
-
6
ac3
-
4889
-
bf47
-
9
e23bbd260ec
)
]
...
...
@@ -376,3 +390,45 @@ interface IDXGIDevice : IDXGIObject
[
out
]
INT
*
priority
)
;
}
typedef
enum
DXGI_ADAPTER_FLAG
{
DXGI_ADAPTER_FLAG_NONE
=
0
,
DXGI_ADAPTER_FLAG_REMOTE
=
1
,
DXGI_ADAPTER_FLAG_FORCE_DWORD
=
0
xFFFFFFFF
}
DXGI_ADAPTER_FLAG
;
typedef
struct
DXGI_ADAPTER_DESC1
{
WCHAR
Description
[
128
]
;
UINT
VendorId
;
UINT
DeviceId
;
UINT
SubSysId
;
UINT
Revision
;
SIZE_T
DedicatedVideoMemory
;
SIZE_T
DedicatedSystemMemory
;
SIZE_T
SharedSystemMemory
;
LUID
AdapterLuid
;
UINT
Flags
;
}
DXGI_ADAPTER_DESC1
;
[
object
,
uuid
(
29038
f61
-
3839
-
4626
-
91
fd
-
086879011
a05
),
local
,
pointer_default
(
unique
)
]
interface
IDXGIAdapter1
:
IDXGIAdapter
{
HRESULT
GetDesc1
(
[
out
]
DXGI_ADAPTER_DESC1
*
pDesc
)
;
}
[
object
,
uuid
(
770
aae78
-
f26f
-
4
dba
-
a829
-
253
c83d1b387
),
local
,
pointer_default
(
unique
)
]
interface
IDXGIFactory1
:
IDXGIFactory
{
HRESULT
EnumAdapters1
(
[
in
]
UINT
Adapter
,
[
out
]
IDXGIAdapter1
**
ppAdapter
)
;
BOOL
IsCurrent
()
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment