| /* |
| * IDirect3DVolume9 implementation |
| * |
| * Copyright 2002-2005 Jason Edmeades |
| * Raphael Junqueira |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the Free Software |
| * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| */ |
| |
| #include "config.h" |
| #include "d3d9_private.h" |
| |
| WINE_DEFAULT_DEBUG_CHANNEL(d3d9); |
| |
| /* IDirect3DVolume9 IUnknown parts follow: */ |
| static HRESULT WINAPI IDirect3DVolume9Impl_QueryInterface(LPDIRECT3DVOLUME9 iface, REFIID riid, LPVOID* ppobj) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| |
| TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj); |
| |
| if (IsEqualGUID(riid, &IID_IUnknown) |
| || IsEqualGUID(riid, &IID_IDirect3DVolume9)) { |
| IDirect3DVolume9_AddRef(iface); |
| *ppobj = This; |
| return S_OK; |
| } |
| |
| WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj); |
| *ppobj = NULL; |
| return E_NOINTERFACE; |
| } |
| |
| static ULONG WINAPI IDirect3DVolume9Impl_AddRef(LPDIRECT3DVOLUME9 iface) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| |
| TRACE("iface %p.\n", iface); |
| |
| if (This->forwardReference) { |
| /* Forward refcounting */ |
| TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference); |
| return IUnknown_AddRef(This->forwardReference); |
| } else { |
| /* No container, handle our own refcounting */ |
| ULONG ref = InterlockedIncrement(&This->ref); |
| |
| TRACE("%p increasing refcount to %u.\n", iface, ref); |
| |
| if (ref == 1) |
| { |
| wined3d_mutex_lock(); |
| IWineD3DVolume_AddRef(This->wineD3DVolume); |
| wined3d_mutex_unlock(); |
| } |
| |
| return ref; |
| } |
| } |
| |
| static ULONG WINAPI IDirect3DVolume9Impl_Release(LPDIRECT3DVOLUME9 iface) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| |
| TRACE("iface %p.\n", iface); |
| |
| if (This->forwardReference) { |
| /* Forward refcounting */ |
| TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference); |
| return IUnknown_Release(This->forwardReference); |
| } else { |
| /* No container, handle our own refcounting */ |
| ULONG ref = InterlockedDecrement(&This->ref); |
| |
| TRACE("%p decreasing refcount to %u.\n", iface, ref); |
| |
| if (ref == 0) { |
| wined3d_mutex_lock(); |
| IWineD3DVolume_Release(This->wineD3DVolume); |
| wined3d_mutex_unlock(); |
| } |
| |
| return ref; |
| } |
| } |
| |
| /* IDirect3DVolume9 Interface follow: */ |
| static HRESULT WINAPI IDirect3DVolume9Impl_GetDevice(IDirect3DVolume9 *iface, IDirect3DDevice9 **device) |
| { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| IDirect3DResource9 *resource; |
| HRESULT hr; |
| |
| TRACE("iface %p, device %p.\n", iface, device); |
| |
| hr = IUnknown_QueryInterface(This->forwardReference, &IID_IDirect3DResource9, (void **)&resource); |
| if (SUCCEEDED(hr)) |
| { |
| hr = IDirect3DResource9_GetDevice(resource, device); |
| IDirect3DResource9_Release(resource); |
| |
| TRACE("Returning device %p.\n", *device); |
| } |
| |
| return hr; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_SetPrivateData(LPDIRECT3DVOLUME9 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| HRESULT hr; |
| |
| TRACE("iface %p, guid %s, data %p, data_size %u, flags %#x.\n", |
| iface, debugstr_guid(refguid), pData, SizeOfData, Flags); |
| |
| wined3d_mutex_lock(); |
| |
| hr = IWineD3DVolume_SetPrivateData(This->wineD3DVolume, refguid, pData, SizeOfData, Flags); |
| |
| wined3d_mutex_unlock(); |
| |
| return hr; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_GetPrivateData(LPDIRECT3DVOLUME9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| HRESULT hr; |
| |
| TRACE("iface %p, guid %s, data %p, data_size %p.\n", |
| iface, debugstr_guid(refguid), pData, pSizeOfData); |
| |
| wined3d_mutex_lock(); |
| |
| hr = IWineD3DVolume_GetPrivateData(This->wineD3DVolume, refguid, pData, pSizeOfData); |
| |
| wined3d_mutex_unlock(); |
| |
| return hr; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_FreePrivateData(LPDIRECT3DVOLUME9 iface, REFGUID refguid) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| HRESULT hr; |
| |
| TRACE("iface %p, guid %s.\n", iface, debugstr_guid(refguid)); |
| |
| wined3d_mutex_lock(); |
| |
| hr = IWineD3DVolume_FreePrivateData(This->wineD3DVolume, refguid); |
| |
| wined3d_mutex_unlock(); |
| |
| return hr; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_GetContainer(LPDIRECT3DVOLUME9 iface, REFIID riid, void** ppContainer) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| HRESULT res; |
| |
| TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer); |
| |
| if (!This->container) return E_NOINTERFACE; |
| |
| res = IUnknown_QueryInterface(This->container, riid, ppContainer); |
| |
| TRACE("Returning ppContainer %p, *ppContainer %p\n", ppContainer, *ppContainer); |
| |
| return res; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_GetDesc(IDirect3DVolume9 *iface, D3DVOLUME_DESC *desc) |
| { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| struct wined3d_resource_desc wined3d_desc; |
| struct wined3d_resource *wined3d_resource; |
| |
| TRACE("iface %p, desc %p.\n", iface, desc); |
| |
| wined3d_mutex_lock(); |
| wined3d_resource = IWineD3DVolume_GetResource(This->wineD3DVolume); |
| wined3d_resource_get_desc(wined3d_resource, &wined3d_desc); |
| wined3d_mutex_unlock(); |
| |
| desc->Format = d3dformat_from_wined3dformat(wined3d_desc.format); |
| desc->Type = wined3d_desc.resource_type; |
| desc->Usage = wined3d_desc.usage; |
| desc->Pool = wined3d_desc.pool; |
| desc->Width = wined3d_desc.width; |
| desc->Height = wined3d_desc.height; |
| desc->Depth = wined3d_desc.depth; |
| |
| return D3D_OK; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_LockBox(LPDIRECT3DVOLUME9 iface, D3DLOCKED_BOX* pLockedVolume, CONST D3DBOX* pBox, DWORD Flags) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| HRESULT hr; |
| |
| TRACE("iface %p, locked_box %p, box %p, flags %#x.\n", |
| iface, pLockedVolume, pBox, Flags); |
| |
| wined3d_mutex_lock(); |
| |
| hr = IWineD3DVolume_Map(This->wineD3DVolume, (WINED3DLOCKED_BOX *)pLockedVolume, |
| (const WINED3DBOX *)pBox, Flags); |
| |
| wined3d_mutex_unlock(); |
| |
| return hr; |
| } |
| |
| static HRESULT WINAPI IDirect3DVolume9Impl_UnlockBox(LPDIRECT3DVOLUME9 iface) { |
| IDirect3DVolume9Impl *This = (IDirect3DVolume9Impl *)iface; |
| HRESULT hr; |
| |
| TRACE("iface %p.\n", iface); |
| |
| wined3d_mutex_lock(); |
| |
| hr = IWineD3DVolume_Unmap(This->wineD3DVolume); |
| |
| wined3d_mutex_unlock(); |
| |
| return hr; |
| } |
| |
| static const IDirect3DVolume9Vtbl Direct3DVolume9_Vtbl = |
| { |
| /* IUnknown */ |
| IDirect3DVolume9Impl_QueryInterface, |
| IDirect3DVolume9Impl_AddRef, |
| IDirect3DVolume9Impl_Release, |
| /* IDirect3DVolume9 */ |
| IDirect3DVolume9Impl_GetDevice, |
| IDirect3DVolume9Impl_SetPrivateData, |
| IDirect3DVolume9Impl_GetPrivateData, |
| IDirect3DVolume9Impl_FreePrivateData, |
| IDirect3DVolume9Impl_GetContainer, |
| IDirect3DVolume9Impl_GetDesc, |
| IDirect3DVolume9Impl_LockBox, |
| IDirect3DVolume9Impl_UnlockBox |
| }; |
| |
| static void STDMETHODCALLTYPE volume_wined3d_object_destroyed(void *parent) |
| { |
| HeapFree(GetProcessHeap(), 0, parent); |
| } |
| |
| static const struct wined3d_parent_ops d3d9_volume_wined3d_parent_ops = |
| { |
| volume_wined3d_object_destroyed, |
| }; |
| |
| HRESULT volume_init(IDirect3DVolume9Impl *volume, IDirect3DDevice9Impl *device, UINT width, UINT height, |
| UINT depth, DWORD usage, enum wined3d_format_id format, WINED3DPOOL pool) |
| { |
| HRESULT hr; |
| |
| volume->lpVtbl = &Direct3DVolume9_Vtbl; |
| volume->ref = 1; |
| |
| hr = IWineD3DDevice_CreateVolume(device->WineD3DDevice, width, height, depth, usage & WINED3DUSAGE_MASK, |
| format, pool, volume, &d3d9_volume_wined3d_parent_ops, &volume->wineD3DVolume); |
| if (FAILED(hr)) |
| { |
| WARN("Failed to create wined3d volume, hr %#x.\n", hr); |
| return hr; |
| } |
| |
| return D3D_OK; |
| } |