mirror of
https://github.com/amerkoleci/Vortice.Win32.git
synced 2026-01-15 00:26:03 +08:00
Update metadata to 39.0.18-preview
Generator: Add initial Interface generation.
This commit is contained in:
@@ -14,7 +14,7 @@ namespace Win32.Graphics.Dxgi;
|
||||
[Guid("7b7166ec-21c7-44ae-b21a-c9ae321ae369")]
|
||||
[NativeTypeName("struct IDXGIFactory : IDXGIObject")]
|
||||
[NativeInheritance("IDXGIObject")]
|
||||
public unsafe partial struct IDXGIFactory : INativeGuid
|
||||
public unsafe partial struct IDXGIFactory : IDXGIFactory.Interface, INativeGuid
|
||||
{
|
||||
public static ref readonly Guid IID_IDXGIFactory
|
||||
{
|
||||
@@ -145,5 +145,22 @@ public unsafe partial struct IDXGIFactory : INativeGuid
|
||||
{
|
||||
return ((delegate* unmanaged[Stdcall]<IDXGIFactory*, IntPtr, IDXGIAdapter**, int>)(lpVtbl[11]))((IDXGIFactory*)Unsafe.AsPointer(ref this), Module, ppAdapter);
|
||||
}
|
||||
public interface Interface : IDXGIObject.Interface
|
||||
{
|
||||
[VtblIndex(7)]
|
||||
HResult EnumAdapters(uint Adapter, IDXGIAdapter** ppAdapter);
|
||||
|
||||
[VtblIndex(8)]
|
||||
HResult MakeWindowAssociation(IntPtr WindowHandle, WindowAssociationFlags Flags);
|
||||
|
||||
[VtblIndex(9)]
|
||||
HResult GetWindowAssociation(IntPtr* pWindowHandle);
|
||||
|
||||
[VtblIndex(10)]
|
||||
HResult CreateSwapChain(IUnknown* pDevice, SwapChainDescription* pDesc, IDXGISwapChain** ppSwapChain);
|
||||
|
||||
[VtblIndex(11)]
|
||||
HResult CreateSoftwareAdapter(IntPtr Module, IDXGIAdapter** ppAdapter);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user