Commit 3d891e41 authored by Ziqing Hui's avatar Ziqing Hui Committed by Alexandre Julliard

include: Add defines for ID2D1ComputeInfo.

parent 04de217c
......@@ -192,3 +192,23 @@ interface ID2D1DrawInfo : ID2D1RenderInfo
[in, optional] const GUID *shader
);
}
[
object,
uuid(5598b14b-9fd7-48b7-9bdb-8f0964eb38bc),
local,
]
interface ID2D1ComputeInfo : ID2D1RenderInfo
{
HRESULT SetComputeShaderconstantBuffer(
[in] const BYTE *buffer,
[in] UINT32 size
);
HRESULT SetComputeShader(
[in] REFGUID id
);
HRESULT SetResourceTexture(
[in] UINT32 index,
[in] ID2D1ResourceTexture *texture
);
}
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