setupapi: Fix memory leak.
[wine/hacks.git] / dlls / d3d9 / volume.c
blob0d83ce1655a12854f5e592bbd348c11c2f61fca2
1 /*
2 * IDirect3DVolume9 implementation
4 * Copyright 2002-2005 Jason Edmeades
5 * Raphael Junqueira
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "d3d9_private.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
27 /* IDirect3DVolume9 IUnknown parts follow: */
28 static HRESULT WINAPI IDirect3DVolume9Impl_QueryInterface(LPDIRECT3DVOLUME9 iface, REFIID riid, LPVOID* ppobj) {
29 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
31 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
33 if (IsEqualGUID(riid, &IID_IUnknown)
34 || IsEqualGUID(riid, &IID_IDirect3DVolume9)) {
35 IDirect3DVolume9_AddRef(iface);
36 *ppobj = This;
37 return S_OK;
40 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
41 *ppobj = NULL;
42 return E_NOINTERFACE;
45 static ULONG WINAPI IDirect3DVolume9Impl_AddRef(LPDIRECT3DVOLUME9 iface) {
46 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
48 TRACE("iface %p.\n", iface);
50 if (This->forwardReference) {
51 /* Forward refcounting */
52 TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
53 return IUnknown_AddRef(This->forwardReference);
54 } else {
55 /* No container, handle our own refcounting */
56 ULONG ref = InterlockedIncrement(&This->ref);
58 TRACE("%p increasing refcount to %u.\n", iface, ref);
60 if (ref == 1)
62 wined3d_mutex_lock();
63 IWineD3DVolume_AddRef(This->wineD3DVolume);
64 wined3d_mutex_unlock();
67 return ref;
71 static ULONG WINAPI IDirect3DVolume9Impl_Release(LPDIRECT3DVOLUME9 iface) {
72 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
74 TRACE("iface %p.\n", iface);
76 if (This->forwardReference) {
77 /* Forward refcounting */
78 TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
79 return IUnknown_Release(This->forwardReference);
80 } else {
81 /* No container, handle our own refcounting */
82 ULONG ref = InterlockedDecrement(&This->ref);
84 TRACE("%p decreasing refcount to %u.\n", iface, ref);
86 if (ref == 0) {
87 wined3d_mutex_lock();
88 IWineD3DVolume_Release(This->wineD3DVolume);
89 wined3d_mutex_unlock();
92 return ref;
96 /* IDirect3DVolume9 Interface follow: */
97 static HRESULT WINAPI IDirect3DVolume9Impl_GetDevice(LPDIRECT3DVOLUME9 iface, IDirect3DDevice9** ppDevice) {
98 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
99 IWineD3DDevice *myDevice = NULL;
101 TRACE("iface %p, device %p.\n", iface, ppDevice);
103 wined3d_mutex_lock();
105 IWineD3DVolume_GetDevice(This->wineD3DVolume, &myDevice);
106 IWineD3DDevice_GetParent(myDevice, (IUnknown **)ppDevice);
107 IWineD3DDevice_Release(myDevice);
109 wined3d_mutex_unlock();
111 return D3D_OK;
114 static HRESULT WINAPI IDirect3DVolume9Impl_SetPrivateData(LPDIRECT3DVOLUME9 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
115 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
116 HRESULT hr;
118 TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
119 iface, debugstr_guid(refguid), pData, SizeOfData, Flags);
121 wined3d_mutex_lock();
123 hr = IWineD3DVolume_SetPrivateData(This->wineD3DVolume, refguid, pData, SizeOfData, Flags);
125 wined3d_mutex_unlock();
127 return hr;
130 static HRESULT WINAPI IDirect3DVolume9Impl_GetPrivateData(LPDIRECT3DVOLUME9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
131 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
132 HRESULT hr;
134 TRACE("iface %p, guid %s, data %p, data_size %p.\n",
135 iface, debugstr_guid(refguid), pData, pSizeOfData);
137 wined3d_mutex_lock();
139 hr = IWineD3DVolume_GetPrivateData(This->wineD3DVolume, refguid, pData, pSizeOfData);
141 wined3d_mutex_unlock();
143 return hr;
146 static HRESULT WINAPI IDirect3DVolume9Impl_FreePrivateData(LPDIRECT3DVOLUME9 iface, REFGUID refguid) {
147 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
148 HRESULT hr;
150 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(refguid));
152 wined3d_mutex_lock();
154 hr = IWineD3DVolume_FreePrivateData(This->wineD3DVolume, refguid);
156 wined3d_mutex_unlock();
158 return hr;
161 static HRESULT WINAPI IDirect3DVolume9Impl_GetContainer(LPDIRECT3DVOLUME9 iface, REFIID riid, void** ppContainer) {
162 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
163 HRESULT res;
165 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer);
167 if (!This->container) return E_NOINTERFACE;
169 if (!ppContainer) {
170 ERR("Called without a valid ppContainer.\n");
173 res = IUnknown_QueryInterface(This->container, riid, ppContainer);
175 TRACE("Returning ppContainer %p, *ppContainer %p\n", ppContainer, *ppContainer);
177 return res;
180 static HRESULT WINAPI IDirect3DVolume9Impl_GetDesc(LPDIRECT3DVOLUME9 iface, D3DVOLUME_DESC* pDesc) {
181 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
182 WINED3DVOLUME_DESC wined3ddesc;
183 HRESULT hr;
185 TRACE("iface %p, desc %p.\n", iface, pDesc);
187 wined3d_mutex_lock();
189 hr = IWineD3DVolume_GetDesc(This->wineD3DVolume, &wined3ddesc);
191 wined3d_mutex_unlock();
193 if (SUCCEEDED(hr))
195 pDesc->Format = d3dformat_from_wined3dformat(wined3ddesc.Format);
196 pDesc->Type = wined3ddesc.Type;
197 pDesc->Usage = wined3ddesc.Usage;
198 pDesc->Pool = wined3ddesc.Pool;
199 pDesc->Width = wined3ddesc.Width;
200 pDesc->Height = wined3ddesc.Height;
201 pDesc->Depth = wined3ddesc.Depth;
204 return hr;
207 static HRESULT WINAPI IDirect3DVolume9Impl_LockBox(LPDIRECT3DVOLUME9 iface, D3DLOCKED_BOX* pLockedVolume, CONST D3DBOX* pBox, DWORD Flags) {
208 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
209 HRESULT hr;
211 TRACE("iface %p, locked_box %p, box %p, flags %#x.\n",
212 iface, pLockedVolume, pBox, Flags);
214 wined3d_mutex_lock();
216 hr = IWineD3DVolume_LockBox(This->wineD3DVolume, (WINED3DLOCKED_BOX *)pLockedVolume,
217 (const WINED3DBOX *)pBox, Flags);
219 wined3d_mutex_unlock();
221 return hr;
224 static HRESULT WINAPI IDirect3DVolume9Impl_UnlockBox(LPDIRECT3DVOLUME9 iface) {
225 IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface;
226 HRESULT hr;
228 TRACE("iface %p.\n", iface);
230 wined3d_mutex_lock();
232 hr = IWineD3DVolume_UnlockBox(This->wineD3DVolume);
234 wined3d_mutex_unlock();
236 return hr;
239 static const IDirect3DVolume9Vtbl Direct3DVolume9_Vtbl =
241 /* IUnknown */
242 IDirect3DVolume9Impl_QueryInterface,
243 IDirect3DVolume9Impl_AddRef,
244 IDirect3DVolume9Impl_Release,
245 /* IDirect3DVolume9 */
246 IDirect3DVolume9Impl_GetDevice,
247 IDirect3DVolume9Impl_SetPrivateData,
248 IDirect3DVolume9Impl_GetPrivateData,
249 IDirect3DVolume9Impl_FreePrivateData,
250 IDirect3DVolume9Impl_GetContainer,
251 IDirect3DVolume9Impl_GetDesc,
252 IDirect3DVolume9Impl_LockBox,
253 IDirect3DVolume9Impl_UnlockBox
256 static void STDMETHODCALLTYPE volume_wined3d_object_destroyed(void *parent)
258 HeapFree(GetProcessHeap(), 0, parent);
261 static const struct wined3d_parent_ops d3d9_volume_wined3d_parent_ops =
263 volume_wined3d_object_destroyed,
266 HRESULT volume_init(IDirect3DVolume9Impl *volume, IDirect3DDevice9Impl *device, UINT width, UINT height,
267 UINT depth, DWORD usage, WINED3DFORMAT format, WINED3DPOOL pool)
269 HRESULT hr;
271 volume->lpVtbl = &Direct3DVolume9_Vtbl;
272 volume->ref = 1;
274 hr = IWineD3DDevice_CreateVolume(device->WineD3DDevice, width, height, depth, usage & WINED3DUSAGE_MASK,
275 format, pool, &volume->wineD3DVolume, (IUnknown *)volume, &d3d9_volume_wined3d_parent_ops);
276 if (FAILED(hr))
278 WARN("Failed to create wined3d volume, hr %#x.\n", hr);
279 return hr;
282 return D3D_OK;