dxgi: Implement CreateDXGIFactory().
[wine] / dlls / dxgi / factory.c
1 /*
2  * Copyright 2008 Henri Verbeet for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  *
18  */
19
20 #include "config.h"
21 #include "wine/port.h"
22
23 #include "dxgi_private.h"
24
25 WINE_DEFAULT_DEBUG_CHANNEL(dxgi);
26
27 /* IUnknown methods */
28
29 HRESULT STDMETHODCALLTYPE dxgi_factory_QueryInterface(IDXGIFactory* iface, REFIID riid, void **object)
30 {
31     TRACE("iface %p, riid %s, object %p\n", iface, debugstr_guid(riid), object);
32
33     if (IsEqualGUID(riid, &IID_IUnknown)
34             || IsEqualGUID(riid, &IID_IDXGIObject)
35             || IsEqualGUID(riid, &IID_IDXGIFactory))
36     {
37         IUnknown_AddRef(iface);
38         *object = iface;
39         return S_OK;
40     }
41
42     WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid));
43
44     *object = NULL;
45     return E_NOINTERFACE;
46 }
47
48 ULONG STDMETHODCALLTYPE dxgi_factory_AddRef(IDXGIFactory* iface)
49 {
50     struct dxgi_factory *This = (struct dxgi_factory *)iface;
51     ULONG refcount = InterlockedIncrement(&This->refcount);
52
53     TRACE("%p increasing refcount to %u\n", This, refcount);
54
55     return refcount;
56 }
57
58 ULONG STDMETHODCALLTYPE dxgi_factory_Release(IDXGIFactory* iface)
59 {
60     struct dxgi_factory *This = (struct dxgi_factory *)iface;
61     ULONG refcount = InterlockedDecrement(&This->refcount);
62
63     TRACE("%p decreasing refcount to %u\n", This, refcount);
64
65     if (!refcount)
66     {
67         HeapFree(GetProcessHeap(), 0, This);
68     }
69
70     return refcount;
71 }
72
73 /* IDXGIObject methods */
74
75 HRESULT STDMETHODCALLTYPE dxgi_factory_SetPrivateData(IDXGIFactory* iface,
76         REFGUID guid, UINT data_size, const void *data)
77 {
78     FIXME("iface %p, guid %s, data_size %u, data %p stub!\n", iface, debugstr_guid(guid), data_size, data);
79
80     return E_NOTIMPL;
81 }
82
83 HRESULT STDMETHODCALLTYPE dxgi_factory_SetPrivateDataInterface(IDXGIFactory* iface,
84         REFGUID guid, const IUnknown *object)
85 {
86     FIXME("iface %p, guid %s, object %p stub!\n", iface, debugstr_guid(guid), object);
87
88     return E_NOTIMPL;
89 }
90
91 HRESULT STDMETHODCALLTYPE dxgi_factory_GetPrivateData(IDXGIFactory* iface,
92         REFGUID guid, UINT *data_size, void *data)
93 {
94     FIXME("iface %p, guid %s, data_size %p, data %p stub!\n", iface, debugstr_guid(guid), data_size, data);
95
96     return E_NOTIMPL;
97 }
98
99 HRESULT STDMETHODCALLTYPE dxgi_factory_GetParent(IDXGIFactory* iface, REFIID riid, void **parent)
100 {
101     FIXME("iface %p, riid %s, parent %p stub!\n", iface, debugstr_guid(riid), parent);
102
103     return E_NOTIMPL;
104 }
105
106 /* IDXGIFactory methods */
107
108 HRESULT STDMETHODCALLTYPE dxgi_factory_EnumAdapters(IDXGIFactory* iface, UINT adapter_idx, IDXGIAdapter **adapter)
109 {
110     FIXME("iface %p, adapter_idx %u, adapter %p stub!\n", iface, adapter_idx, adapter);
111
112     return E_NOTIMPL;
113 }
114
115 HRESULT STDMETHODCALLTYPE dxgi_factory_MakeWindowAssociation(IDXGIFactory* iface, HWND window, UINT flags)
116 {
117     FIXME("iface %p, window %p, flags %#x stub!\n\n", iface, window, flags);
118
119     return E_NOTIMPL;
120 }
121
122 HRESULT STDMETHODCALLTYPE dxgi_factory_GetWindowAssociation(IDXGIFactory* iface, HWND *window)
123 {
124     FIXME("iface %p, window %p stub!\n", iface, window);
125
126     return E_NOTIMPL;
127 }
128
129 HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSwapChain(IDXGIFactory* iface,
130         IUnknown *device, DXGI_SWAP_CHAIN_DESC *desc, IDXGISwapChain **swapchain)
131 {
132     FIXME("iface %p, device %p, desc %p, swapchain %p stub!\n", iface, device, desc, swapchain);
133
134     return E_NOTIMPL;
135 }
136
137 HRESULT STDMETHODCALLTYPE dxgi_factory_CreateSoftwareAdapter(IDXGIFactory* iface,
138         HMODULE swrast, IDXGIAdapter **adapter)
139 {
140     FIXME("iface %p, swrast %p, adapter %p stub!\n", iface, swrast, adapter);
141
142     return E_NOTIMPL;
143 }
144
145 const struct IDXGIFactoryVtbl dxgi_factory_vtbl =
146 {
147     /* IUnknown methods */
148     dxgi_factory_QueryInterface,
149     dxgi_factory_AddRef,
150     dxgi_factory_Release,
151     /* IDXGIObject methods */
152     dxgi_factory_SetPrivateData,
153     dxgi_factory_SetPrivateDataInterface,
154     dxgi_factory_GetPrivateData,
155     dxgi_factory_GetParent,
156     /* IDXGIFactory methods */
157     dxgi_factory_EnumAdapters,
158     dxgi_factory_MakeWindowAssociation,
159     dxgi_factory_GetWindowAssociation,
160     dxgi_factory_CreateSwapChain,
161     dxgi_factory_CreateSoftwareAdapter,
162 };