From cdefc48190b163312dc42ddae99025cdeae845d9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 16 Nov 2012 20:06:20 +0000 Subject: [PATCH 1/1] d3d11: Ensure IDXGIFactory1 interface is not forgotten. --- specs/d3d11.py | 1 + specs/dxgi.py | 3 +++ 2 files changed, 4 insertions(+) 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")]), -- 2.43.0