tests: Don't initialize static variables to 0.
[wine.git] / dlls / d3d9 / volume.c
blob39caa8fb08e308754e25a6efae3e16197a728042
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 "d3d9_private.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
26 static inline struct d3d9_volume *impl_from_IDirect3DVolume9(IDirect3DVolume9 *iface)
28 return CONTAINING_RECORD(iface, struct d3d9_volume, IDirect3DVolume9_iface);
31 static HRESULT WINAPI d3d9_volume_QueryInterface(IDirect3DVolume9 *iface, REFIID riid, void **out)
33 TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
35 if (IsEqualGUID(riid, &IID_IDirect3DVolume9)
36 || IsEqualGUID(riid, &IID_IUnknown))
38 IDirect3DVolume9_AddRef(iface);
39 *out = iface;
40 return S_OK;
43 WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
45 *out = NULL;
46 return E_NOINTERFACE;
49 static ULONG WINAPI d3d9_volume_AddRef(IDirect3DVolume9 *iface)
51 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
53 TRACE("iface %p.\n", iface);
54 TRACE("Forwarding to %p.\n", volume->texture);
56 return IDirect3DBaseTexture9_AddRef(&volume->texture->IDirect3DBaseTexture9_iface);
59 static ULONG WINAPI d3d9_volume_Release(IDirect3DVolume9 *iface)
61 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
63 TRACE("iface %p.\n", iface);
64 TRACE("Forwarding to %p.\n", volume->texture);
66 return IDirect3DBaseTexture9_Release(&volume->texture->IDirect3DBaseTexture9_iface);
69 static HRESULT WINAPI d3d9_volume_GetDevice(IDirect3DVolume9 *iface, IDirect3DDevice9 **device)
71 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
73 TRACE("iface %p, device %p.\n", iface, device);
75 return IDirect3DBaseTexture9_GetDevice(&volume->texture->IDirect3DBaseTexture9_iface, device);
78 static HRESULT WINAPI d3d9_volume_SetPrivateData(IDirect3DVolume9 *iface, REFGUID guid,
79 const void *data, DWORD data_size, DWORD flags)
81 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
82 TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n",
83 iface, debugstr_guid(guid), data, data_size, flags);
85 return d3d9_resource_set_private_data(&volume->resource, guid, data, data_size, flags);
88 static HRESULT WINAPI d3d9_volume_GetPrivateData(IDirect3DVolume9 *iface, REFGUID guid,
89 void *data, DWORD *data_size)
91 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
92 TRACE("iface %p, guid %s, data %p, data_size %p.\n",
93 iface, debugstr_guid(guid), data, data_size);
95 return d3d9_resource_get_private_data(&volume->resource, guid, data, data_size);
98 static HRESULT WINAPI d3d9_volume_FreePrivateData(IDirect3DVolume9 *iface, REFGUID guid)
100 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
101 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
103 return d3d9_resource_free_private_data(&volume->resource, guid);
106 static HRESULT WINAPI d3d9_volume_GetContainer(IDirect3DVolume9 *iface, REFIID riid, void **container)
108 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
110 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), container);
112 return IDirect3DBaseTexture9_QueryInterface(&volume->texture->IDirect3DBaseTexture9_iface, riid, container);
115 static HRESULT WINAPI d3d9_volume_GetDesc(IDirect3DVolume9 *iface, D3DVOLUME_DESC *desc)
117 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
118 struct wined3d_sub_resource_desc wined3d_desc;
120 TRACE("iface %p, desc %p.\n", iface, desc);
122 wined3d_mutex_lock();
123 wined3d_texture_get_sub_resource_desc(volume->wined3d_texture, volume->sub_resource_idx, &wined3d_desc);
124 wined3d_mutex_unlock();
126 desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format);
127 desc->Type = D3DRTYPE_VOLUME;
128 desc->Usage = d3dusage_from_wined3dusage(wined3d_desc.usage, wined3d_desc.bind_flags);
129 desc->Pool = d3dpool_from_wined3daccess(wined3d_desc.access, wined3d_desc.usage);
130 desc->Width = wined3d_desc.width;
131 desc->Height = wined3d_desc.height;
132 desc->Depth = wined3d_desc.depth;
134 return D3D_OK;
137 static HRESULT WINAPI d3d9_volume_LockBox(IDirect3DVolume9 *iface,
138 D3DLOCKED_BOX *locked_box, const D3DBOX *box, DWORD flags)
140 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
141 struct wined3d_map_desc map_desc;
142 HRESULT hr;
144 TRACE("iface %p, locked_box %p, box %p, flags %#x.\n",
145 iface, locked_box, box, flags);
147 wined3d_mutex_lock();
148 if (FAILED(hr = wined3d_resource_map(wined3d_texture_get_resource(volume->wined3d_texture),
149 volume->sub_resource_idx, &map_desc, (const struct wined3d_box *)box,
150 wined3dmapflags_from_d3dmapflags(flags, 0))))
151 map_desc.data = NULL;
152 wined3d_mutex_unlock();
154 locked_box->RowPitch = map_desc.row_pitch;
155 locked_box->SlicePitch = map_desc.slice_pitch;
156 locked_box->pBits = map_desc.data;
158 if (hr == E_INVALIDARG)
159 return D3DERR_INVALIDCALL;
160 return hr;
163 static HRESULT WINAPI d3d9_volume_UnlockBox(IDirect3DVolume9 *iface)
165 struct d3d9_volume *volume = impl_from_IDirect3DVolume9(iface);
166 HRESULT hr;
168 TRACE("iface %p.\n", iface);
170 wined3d_mutex_lock();
171 hr = wined3d_resource_unmap(wined3d_texture_get_resource(volume->wined3d_texture), volume->sub_resource_idx);
172 wined3d_mutex_unlock();
174 if (hr == WINEDDERR_NOTLOCKED)
175 return D3DERR_INVALIDCALL;
176 return hr;
179 static const struct IDirect3DVolume9Vtbl d3d9_volume_vtbl =
181 /* IUnknown */
182 d3d9_volume_QueryInterface,
183 d3d9_volume_AddRef,
184 d3d9_volume_Release,
185 /* IDirect3DVolume9 */
186 d3d9_volume_GetDevice,
187 d3d9_volume_SetPrivateData,
188 d3d9_volume_GetPrivateData,
189 d3d9_volume_FreePrivateData,
190 d3d9_volume_GetContainer,
191 d3d9_volume_GetDesc,
192 d3d9_volume_LockBox,
193 d3d9_volume_UnlockBox,
196 static void STDMETHODCALLTYPE volume_wined3d_object_destroyed(void *parent)
198 struct d3d9_volume *volume = parent;
199 d3d9_resource_cleanup(&volume->resource);
200 heap_free(volume);
203 static const struct wined3d_parent_ops d3d9_volume_wined3d_parent_ops =
205 volume_wined3d_object_destroyed,
208 void volume_init(struct d3d9_volume *volume, struct wined3d_texture *wined3d_texture,
209 unsigned int sub_resource_idx, const struct wined3d_parent_ops **parent_ops)
211 volume->IDirect3DVolume9_iface.lpVtbl = &d3d9_volume_vtbl;
212 d3d9_resource_init(&volume->resource);
213 volume->resource.refcount = 0;
214 volume->texture = wined3d_texture_get_parent(wined3d_texture);
215 volume->wined3d_texture = wined3d_texture;
216 volume->sub_resource_idx = sub_resource_idx;
218 *parent_ops = &d3d9_volume_wined3d_parent_ops;