Commit e9ec3560 authored by Biswapriyo Nath's avatar Biswapriyo Nath Committed by Alexandre Julliard

include/d3d10sdklayers.idl: Add D3D10Debug interface.

parent 52fa4fb7
......@@ -24,6 +24,10 @@ cpp_quote("#ifdef WINE_NO_UNICODE_MACROS")
cpp_quote("#undef GetMessage")
cpp_quote("#endif")
const UINT D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP = 0x1;
const UINT D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP = 0x2;
const UINT D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP = 0x4;
typedef enum D3D10_MESSAGE_CATEGORY
{
D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED,
......@@ -588,6 +592,31 @@ typedef struct D3D10_INFO_QUEUE_FILTER
[
local,
object,
uuid(9b7e4e01-342c-4106-a19f-4f2704f689f0),
pointer_default(unique)
]
interface ID3D10Debug : IUnknown
{
HRESULT SetFeatureMask(
[in] UINT mask
);
UINT GetFeatureMask();
HRESULT SetPresentPerRenderOpDelay(
[in] UINT milliseconds
);
UINT GetPresentPerRenderOpDelay();
HRESULT SetSwapChain(
[in] IDXGISwapChain *swapchain
);
HRESULT GetSwapChain(
[out] IDXGISwapChain **swapchain
);
HRESULT Validate();
}
[
local,
object,
uuid(1b940b17-2642-4d1f-ab1f-b99bad0c395f),
pointer_default(unique)
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment