From: José Fonseca Date: Fri, 16 Nov 2012 20:06:20 +0000 (+0000) Subject: d3d11: Ensure IDXGIFactory1 interface is not forgotten. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=cdefc48190b163312dc42ddae99025cdeae845d9;hp=e088e5c37db9c47728619481ae845aa48def3e06;p=apitrace d3d11: Ensure IDXGIFactory1 interface is not forgotten. --- diff --git a/specs/d3d11.py b/specs/d3d11.py index e976620..83f3656 100644 --- a/specs/d3d11.py +++ b/specs/d3d11.py @@ -1227,6 +1227,7 @@ d3d11.addFunctions([ ]) d3d11.addInterfaces([ + IDXGIFactory1, IDXGIAdapter1, IDXGIDevice1, IDXGIResource, diff --git a/specs/dxgi.py b/specs/dxgi.py index 97aa5dd..eef7c65 100644 --- a/specs/dxgi.py +++ b/specs/dxgi.py @@ -283,6 +283,9 @@ IDXGIDevice1.methods += [ ] dxgi = Module('dxgi') +dxgi.addInterfaces([ + IDXGIFactory1 +]) dxgi.addFunctions([ StdFunction(HRESULT, "CreateDXGIFactory", [(REFIID, "riid"), Out(Pointer(ObjPointer(Void)), "ppFactory")]), StdFunction(HRESULT, "CreateDXGIFactory1", [(REFIID, "riid"), Out(Pointer(ObjPointer(Void)), "ppFactory")]),