2 * Copyright 2007 Andras Kovacs
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 const UINT _FACDXGI
= 0x87a;
25 cpp_quote
("#define MAKE_DXGI_STATUS(x) MAKE_HRESULT(0, _FACDXGI, x)")
26 cpp_quote
("#define DXGI_STATUS_OCCLUDED MAKE_DXGI_STATUS(1)")
27 cpp_quote
("#define DXGI_STATUS_CLIPPED MAKE_DXGI_STATUS(2)")
28 cpp_quote
("#define DXGI_STATUS_NO_REDIRECTION MAKE_DXGI_STATUS(4)")
29 cpp_quote
("#define DXGI_STATUS_NO_DESKTOP_ACCESS MAKE_DXGI_STATUS(5)")
30 cpp_quote
("#define DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE MAKE_DXGI_STATUS(6)")
31 cpp_quote
("#define DXGI_STATUS_MODE_CHANGED MAKE_DXGI_STATUS(7)")
32 cpp_quote
("#define DXGI_STATUS_MODE_CHANGE_IN_PROGRESS MAKE_DXGI_STATUS(8)")
34 cpp_quote
("#define MAKE_DXGI_HRESULT(x) MAKE_HRESULT(1, _FACDXGI, x)")
35 cpp_quote
("#define DXGI_ERROR_INVALID_CALL MAKE_DXGI_HRESULT(1)")
36 cpp_quote
("#define DXGI_ERROR_NOT_FOUND MAKE_DXGI_HRESULT(2)")
37 cpp_quote
("#define DXGI_ERROR_MORE_DATA MAKE_DXGI_HRESULT(3)")
38 cpp_quote
("#define DXGI_ERROR_UNSUPPORTED MAKE_DXGI_HRESULT(4)")
39 cpp_quote
("#define DXGI_ERROR_DEVICE_REMOVED MAKE_DXGI_HRESULT(5)")
40 cpp_quote
("#define DXGI_ERROR_DEVICE_HUNG MAKE_DXGI_HRESULT(6)")
41 cpp_quote
("#define DXGI_ERROR_DEVICE_RESET MAKE_DXGI_HRESULT(7)")
42 cpp_quote
("#define DXGI_ERROR_WAS_STILL_DRAWING MAKE_DXGI_HRESULT(10)")
43 cpp_quote
("#define DXGI_ERROR_FRAME_STATISTICS_DISJOINT MAKE_DXGI_HRESULT(11)")
44 cpp_quote
("#define DXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE MAKE_DXGI_HRESULT(12)")
45 cpp_quote
("#define DXGI_ERROR_DRIVER_INTERNAL_ERROR MAKE_DXGI_HRESULT(32)")
46 cpp_quote
("#define DXGI_ERROR_NONEXCLUSIVE MAKE_DXGI_HRESULT(33)")
47 cpp_quote
("#define DXGI_ERROR_NOT_CURRENTLY_AVAILABLE MAKE_DXGI_HRESULT(34)")
50 typedef HANDLE HMONITOR
;
51 typedef struct _LUID
{
57 typedef UINT DXGI_USAGE
;
58 const DXGI_USAGE DXGI_USAGE_SHADER_INPUT
= 0x10L
;
59 const DXGI_USAGE DXGI_USAGE_RENDER_TARGET_OUTPUT
= 0x20L
;
60 const DXGI_USAGE DXGI_USAGE_BACK_BUFFER
= 0x40L
;
61 const DXGI_USAGE DXGI_USAGE_SHARED
= 0x80L
;
62 const DXGI_USAGE DXGI_USAGE_READ_ONLY
= 0x100L
;
64 const UINT DXGI_ENUM_MODES_INTERLACED
= 1;
65 const UINT DXGI_ENUM_MODES_SCALING
= 2;
67 typedef enum DXGI_SWAP_EFFECT
{
68 DXGI_SWAP_EFFECT_DISCARD
= 0,
69 DXGI_SWAP_EFFECT_SEQUENTIAL
= 1,
72 typedef enum DXGI_RESIDENCY
{
73 DXGI_RESIDENCY_FULLY_RESIDENT
= 1,
74 DXGI_RESIDENCY_RESIDENT_IN_SHARED_MEMORY
= 2,
75 DXGI_RESIDENCY_EVICTED_TO_DISK
= 3,
78 typedef struct DXGI_SURFACE_DESC
{
82 DXGI_SAMPLE_DESC SampleDesc
;
85 typedef struct DXGI_MAPPED_RECT
{
90 typedef struct DXGI_OUTPUT_DESC
{
92 RECT DesktopCoordinates
;
93 BOOL AttachedToDesktop
;
94 DXGI_MODE_ROTATION Rotation
;
98 typedef struct DXGI_FRAME_STATISTICS
{
100 UINT PresentRefreshCount
;
101 UINT SyncRefreshCount
;
102 LARGE_INTEGER SyncQPCTime
;
103 LARGE_INTEGER SyncGPUTime
;
104 } DXGI_FRAME_STATISTICS
;
106 typedef struct DXGI_ADAPTER_DESC
{
107 WCHAR Description
[128];
112 SIZE_T DedicatedVideoMemory
;
113 SIZE_T DedicatedSystemMemory
;
114 SIZE_T SharedSystemMemory
;
118 typedef enum DXGI_SWAP_CHAIN_FLAG
{
119 DXGI_SWAP_CHAIN_FLAG_NONPREROTATED
= 1,
120 DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH
= 2,
121 DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE
= 4
122 } DXGI_SWAP_CHAIN_FLAG
;
124 typedef struct DXGI_SWAP_CHAIN_DESC
{
125 DXGI_MODE_DESC BufferDesc
;
126 DXGI_SAMPLE_DESC SampleDesc
;
127 DXGI_USAGE BufferUsage
;
131 DXGI_SWAP_EFFECT SwapEffect
;
133 } DXGI_SWAP_CHAIN_DESC
;
135 typedef struct DXGI_SHARED_RESOURCE
{
137 } DXGI_SHARED_RESOURCE
;
142 uuid(aec22fb8
-76f3
-4639-9be0
-28eb43a67a2e
)
144 interface IDXGIObject
: IUnknown
146 HRESULT SetPrivateData
(
149 [in] const void *data
151 HRESULT SetPrivateDataInterface
(
153 [in] const IUnknown
*object
155 HRESULT GetPrivateData
(
157 [in, out] UINT
*data_size
,
169 uuid(3d3e0379
-f9de
-4d58
-bb6c
-18d62992f1a6
)
171 interface IDXGIDeviceSubObject
: IDXGIObject
181 uuid(035f3ab4
-482e-4e50
-b41f
-8a7f8bd8960b
),
183 pointer_default(unique)
185 interface IDXGIResource
: IDXGIDeviceSubObject
187 HRESULT GetSharedHandle
([out] HANDLE *pSharedHandle
);
188 HRESULT GetUsage
([out] DXGI_USAGE
*pUsage
);
189 HRESULT SetEvictionPriority
([in] UINT EvictionPriority
);
190 HRESULT GetEvictionPriority
([out, retval] UINT
*pEvictionPriority
);
195 uuid(9d8e1289
-d7b3
-465f
-8126-250e349af85d
),
197 pointer_default(unique)
199 interface IDXGIKeyedMutex
: IDXGIDeviceSubObject
201 HRESULT AcquireSync
([in] UINT64 Key
, [in] DWORD dwMilliseconds
);
202 HRESULT ReleaseSync
([in] UINT64 Key
);
208 uuid(cafcb56c
-6ac3
-4889-bf47
-9e23bbd260ec
)
210 interface IDXGISurface
: IDXGIDeviceSubObject
213 [out] DXGI_SURFACE_DESC
*desc
216 [out] DXGI_MAPPED_RECT
*mapped_rect
,
226 uuid(ae02eedb
-c735
-4690-8d52
-5a8dc20213aa
)
228 interface IDXGIOutput
: IDXGIObject
231 [out] DXGI_OUTPUT_DESC
*desc
233 HRESULT GetDisplayModeList
(
234 [in] DXGI_FORMAT format
,
236 [in, out] UINT
*mode_count
,
237 [out] DXGI_MODE_DESC
*desc
239 HRESULT FindClosestMatchingMode
(
240 [in] const DXGI_MODE_DESC
*mode
,
241 [out] DXGI_MODE_DESC
*closest_match
,
242 [in] IUnknown
*device
244 HRESULT WaitForVBlank
(
246 HRESULT TakeOwnership
(
247 [in] IUnknown
*device
,
250 void ReleaseOwnership
(
252 HRESULT GetGammaControlCapabilities
(
253 [out] DXGI_GAMMA_CONTROL_CAPABILITIES
*gamma_caps
255 HRESULT SetGammaControl
(
256 [in] const DXGI_GAMMA_CONTROL
*gamma_control
258 HRESULT GetGammaControl
(
259 [out] DXGI_GAMMA_CONTROL
*gamma_control
261 HRESULT SetDisplaySurface
(
262 [in] IDXGISurface
*surface
264 HRESULT GetDisplaySurfaceData
(
265 [in] IDXGISurface
*surface
267 HRESULT GetFrameStatistics
(
268 [out] DXGI_FRAME_STATISTICS
*stats
275 uuid(2411e7e1
-12ac
-4ccf
-bd14
-9798e8534dc0
)
277 interface IDXGIAdapter
: IDXGIObject
280 [in] UINT output_idx
,
281 [in, out] IDXGIOutput
**output
284 [out] DXGI_ADAPTER_DESC
*desc
286 HRESULT CheckInterfaceSupport
(
288 [out] LARGE_INTEGER
*umd_version
292 cpp_quote
("#define DXGI_MAX_SWAP_CHAIN_BUFFERS (16)")
294 cpp_quote
("#define DXGI_PRESENT_TEST __MSABI_LONG(0x00000001U)")
295 cpp_quote
("#define DXGI_PRESENT_DO_NOT_SEQUENCE __MSABI_LONG(0x00000002U)")
296 cpp_quote
("#define DXGI_PRESENT_RESTART __MSABI_LONG(0x00000004U)")
297 cpp_quote
("#define DXGI_PRESENT_DO_NOT_WAIT __MSABI_LONG(0x00000008U)")
298 cpp_quote
("#define DXGI_PRESENT_STEREO_PREFER_RIGHT __MSABI_LONG(0x00000010U)")
299 cpp_quote
("#define DXGI_PRESENT_STEREO_TEMPORARY_MONO __MSABI_LONG(0x00000020U)")
300 cpp_quote
("#define DXGI_PRESENT_RESTRICT_TO_OUTPUT __MSABI_LONG(0x00000040U)")
305 uuid(310d36a0
-d2e7
-4c0a
-aa04
-6a9d23b8886a
)
307 interface IDXGISwapChain
: IDXGIDeviceSubObject
310 [in] UINT sync_interval
,
314 [in] UINT buffer_idx
,
316 [in, out] void **surface
318 HRESULT SetFullscreenState
(
319 [in] BOOL fullscreen
,
320 [in] IDXGIOutput
*target
322 HRESULT GetFullscreenState
(
323 [out] BOOL
*fullscreen
,
324 [out] IDXGIOutput
**target
327 [out] DXGI_SWAP_CHAIN_DESC
*desc
329 HRESULT ResizeBuffers
(
330 [in] UINT buffer_count
,
333 [in] DXGI_FORMAT format
,
336 HRESULT ResizeTarget
(
337 [in] const DXGI_MODE_DESC
*target_mode_desc
339 HRESULT GetContainingOutput
(
340 [out] IDXGIOutput
**output
342 HRESULT GetFrameStatistics
(
343 [out] DXGI_FRAME_STATISTICS
*stats
345 HRESULT GetLastPresentCount
(
346 [out] UINT
*last_present_count
350 cpp_quote
("#define DXGI_MWA_NO_WINDOW_CHANGES 0x1")
351 cpp_quote
("#define DXGI_MWA_NO_ALT_ENTER 0x2")
352 cpp_quote
("#define DXGI_MWA_NO_PRINT_SCREEN 0x4")
353 cpp_quote
("#define DXGI_MWA_VALID 0x7")
358 uuid(7b7166ec
-21c7
-44ae
-b21a
-c9ae321ae369
)
360 interface IDXGIFactory
: IDXGIObject
362 HRESULT EnumAdapters
(
363 [in] UINT adapter_idx
,
364 [out] IDXGIAdapter
**adapter
366 HRESULT MakeWindowAssociation
(
370 HRESULT GetWindowAssociation
(
373 HRESULT CreateSwapChain
(
374 [in] IUnknown
*device
,
375 [in] DXGI_SWAP_CHAIN_DESC
*desc
,
376 [out] IDXGISwapChain
**swapchain
378 HRESULT CreateSoftwareAdapter
(
380 [out] IDXGIAdapter
**adapter
384 [local] HRESULT __stdcall CreateDXGIFactory
(REFIID riid
, void **factory
);
385 [local] HRESULT __stdcall CreateDXGIFactory1
(REFIID riid
, void **factory
);
390 uuid(54ec77fa
-1377-44e6
-8c32
-88fd5f44c84c
)
392 interface IDXGIDevice
: IDXGIObject
395 [out] IDXGIAdapter
**adapter
397 HRESULT CreateSurface
(
398 [in] const DXGI_SURFACE_DESC
*desc
,
399 [in] UINT surface_count
,
400 [in] DXGI_USAGE usage
,
401 [in] const DXGI_SHARED_RESOURCE
*shared_resource
,
402 [out] IDXGISurface
**surface
404 HRESULT QueryResourceResidency
(
405 [in] IUnknown
*const *resources
,
406 [out] DXGI_RESIDENCY
*residency
,
407 [in] UINT resource_count
409 HRESULT SetGPUThreadPriority
(
412 HRESULT GetGPUThreadPriority
(
417 typedef enum DXGI_ADAPTER_FLAG
{
418 DXGI_ADAPTER_FLAG_NONE
= 0,
419 DXGI_ADAPTER_FLAG_REMOTE
= 1,
420 DXGI_ADAPTER_FLAG_FORCE_DWORD
= 0xFFFFFFFF
423 typedef struct DXGI_ADAPTER_DESC1
{
424 WCHAR Description
[128];
429 SIZE_T DedicatedVideoMemory
;
430 SIZE_T DedicatedSystemMemory
;
431 SIZE_T SharedSystemMemory
;
434 } DXGI_ADAPTER_DESC1
;
438 uuid(29038f61
-3839-4626-91fd
-086879011a05
),
440 pointer_default(unique)
442 interface IDXGIAdapter1
: IDXGIAdapter
444 HRESULT GetDesc1
([out] DXGI_ADAPTER_DESC1
*pDesc
);
449 uuid(77db970f
-6276-48ba
-ba28
-070143b4392c
),
451 pointer_default(unique)
453 interface IDXGIDevice1
: IDXGIDevice
455 HRESULT SetMaximumFrameLatency
([in] UINT MaxLatency
);
456 HRESULT GetMaximumFrameLatency
([out] UINT
*pMaxLatency
);
461 uuid(770aae78
-f26f
-4dba
-a829
-253c83d1b387
),
463 pointer_default(unique)
465 interface IDXGIFactory1
: IDXGIFactory
467 HRESULT EnumAdapters1
([in] UINT Adapter
, [out] IDXGIAdapter1
**ppAdapter
);