diff options
Diffstat (limited to 'specs')
-rw-r--r-- | specs/dxgi.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/specs/dxgi.py b/specs/dxgi.py index 091ce746..0e880548 100644 --- a/specs/dxgi.py +++ b/specs/dxgi.py @@ -910,6 +910,12 @@ IDXGISwapChainDWM.methods += [ StdMethod(HRESULT, "GetLastPresentCount", [Out(Pointer(UINT), "pLastPresentCount")], sideeffects=False), ] +IWarpPrivateAPI = Interface("IWarpPrivateAPI", IUnknown) +IWarpPrivateAPI.methods += [ + StdMethod(HRESULT, "WarpEscape", [(OpaquePointer(Void), "pData")]), +] + dxgi.addInterfaces([ IDXGIFactoryDWM, + IWarpPrivateAPI, ]) |