2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DIndexBuffer8 implementation
|
|
|
|
*
|
2006-02-25 13:15:08 +01:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2002-09-28 00:46:16 +02:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-09-28 00:46:16 +02:00
|
|
|
*/
|
|
|
|
|
2003-04-12 02:06:42 +02:00
|
|
|
#include "config.h"
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
/* IDirect3DIndexBuffer8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_QueryInterface(LPDIRECT3DINDEXBUFFER8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2002-12-17 02:15:15 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DIndexBuffer8)) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DIndexBuffer8Impl_AddRef(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-09-17 23:03:32 +02:00
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
IDirect3DDevice8_AddRef(This->parentDevice);
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
IWineD3DBuffer_AddRef(This->wineD3DIndexBuffer);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
2005-01-24 12:31:45 +01:00
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DIndexBuffer8Impl_Release(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (ref == 0) {
|
2009-09-17 23:03:32 +02:00
|
|
|
IDirect3DDevice8_Release(This->parentDevice);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
IWineD3DBuffer_Release(This->wineD3DIndexBuffer);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* IDirect3DIndexBuffer8 IDirect3DResource8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_GetDevice(LPDIRECT3DINDEXBUFFER8 iface, IDirect3DDevice8 **ppDevice) {
|
2005-10-27 12:23:41 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2009-03-23 08:30:16 +01:00
|
|
|
IWineD3DDevice *wined3d_device;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_GetDevice(This->wineD3DIndexBuffer, &wined3d_device);
|
2009-03-23 08:30:16 +01:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IWineD3DDevice_GetParent(wined3d_device, (IUnknown **)ppDevice);
|
|
|
|
IWineD3DDevice_Release(wined3d_device);
|
|
|
|
}
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2005-10-27 12:23:41 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_SetPrivateData(LPDIRECT3DINDEXBUFFER8 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2005-10-27 12:23:41 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_SetPrivateData(This->wineD3DIndexBuffer, refguid, pData, SizeOfData, Flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2005-10-27 12:23:41 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_GetPrivateData(LPDIRECT3DINDEXBUFFER8 iface, REFGUID refguid, void *pData, DWORD *pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_GetPrivateData(This->wineD3DIndexBuffer, refguid, pData, pSizeOfData);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_FreePrivateData(LPDIRECT3DINDEXBUFFER8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_FreePrivateData(This->wineD3DIndexBuffer, refguid);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DIndexBuffer8Impl_SetPriority(LPDIRECT3DINDEXBUFFER8 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
DWORD ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
ret = IWineD3DBuffer_SetPriority(This->wineD3DIndexBuffer, PriorityNew);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return ret;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static DWORD WINAPI IDirect3DIndexBuffer8Impl_GetPriority(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
DWORD ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
ret = IWineD3DBuffer_GetPriority(This->wineD3DIndexBuffer);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return ret;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static void WINAPI IDirect3DIndexBuffer8Impl_PreLoad(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
IWineD3DBuffer_PreLoad(This->wineD3DIndexBuffer);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static D3DRESOURCETYPE WINAPI IDirect3DIndexBuffer8Impl_GetType(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2009-04-06 16:44:00 +02:00
|
|
|
TRACE("(%p)\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-04-06 16:44:00 +02:00
|
|
|
return D3DRTYPE_INDEXBUFFER;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* IDirect3DIndexBuffer8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_Lock(LPDIRECT3DINDEXBUFFER8 iface, UINT OffsetToLock, UINT SizeToLock, BYTE **ppbData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_Map(This->wineD3DIndexBuffer, OffsetToLock, SizeToLock, ppbData, Flags);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_Unlock(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_Unmap(This->wineD3DIndexBuffer);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DIndexBuffer8Impl_GetDesc(LPDIRECT3DINDEXBUFFER8 iface, D3DINDEXBUFFER_DESC *pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2007-05-26 20:09:24 +02:00
|
|
|
HRESULT hr;
|
2009-04-06 13:28:02 +02:00
|
|
|
WINED3DBUFFER_DESC desc;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-05-26 20:09:24 +02:00
|
|
|
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-04-06 16:46:12 +02:00
|
|
|
hr = IWineD3DBuffer_GetDesc(This->wineD3DIndexBuffer, &desc);
|
2009-08-25 08:17:14 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2009-04-06 16:44:00 +02:00
|
|
|
if (SUCCEEDED(hr)) {
|
2009-04-09 10:50:31 +02:00
|
|
|
pDesc->Format = d3dformat_from_wined3dformat(This->format);
|
2009-04-06 16:44:00 +02:00
|
|
|
pDesc->Type = D3DRTYPE_INDEXBUFFER;
|
2009-04-06 13:28:02 +02:00
|
|
|
pDesc->Usage = desc.Usage;
|
|
|
|
pDesc->Pool = desc.Pool;
|
|
|
|
pDesc->Size = desc.Size;
|
2009-04-06 16:44:00 +02:00
|
|
|
}
|
2009-02-19 16:59:41 +01:00
|
|
|
|
2007-05-26 20:09:24 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:03:30 +02:00
|
|
|
static const IDirect3DIndexBuffer8Vtbl Direct3DIndexBuffer8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2006-02-25 13:15:08 +01:00
|
|
|
/* IUnknown */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DIndexBuffer8Impl_QueryInterface,
|
|
|
|
IDirect3DIndexBuffer8Impl_AddRef,
|
|
|
|
IDirect3DIndexBuffer8Impl_Release,
|
2006-02-25 13:15:08 +01:00
|
|
|
/* IDirect3DResource8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DIndexBuffer8Impl_GetDevice,
|
|
|
|
IDirect3DIndexBuffer8Impl_SetPrivateData,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetPrivateData,
|
|
|
|
IDirect3DIndexBuffer8Impl_FreePrivateData,
|
|
|
|
IDirect3DIndexBuffer8Impl_SetPriority,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetPriority,
|
|
|
|
IDirect3DIndexBuffer8Impl_PreLoad,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetType,
|
2006-02-25 13:15:08 +01:00
|
|
|
/* IDirect3DIndexBuffer8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DIndexBuffer8Impl_Lock,
|
|
|
|
IDirect3DIndexBuffer8Impl_Unlock,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetDesc
|
|
|
|
};
|
2009-09-17 23:03:30 +02:00
|
|
|
|
2009-09-17 23:03:32 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d8_indexbuffer_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d8_indexbuffer_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d8_indexbuffer_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-17 23:03:30 +02:00
|
|
|
HRESULT indexbuffer_init(IDirect3DIndexBuffer8Impl *buffer, IDirect3DDevice8Impl *device,
|
|
|
|
UINT size, DWORD usage, D3DFORMAT format, D3DPOOL pool)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
buffer->lpVtbl = &Direct3DIndexBuffer8_Vtbl;
|
|
|
|
buffer->ref = 1;
|
|
|
|
buffer->format = wined3dformat_from_d3dformat(format);
|
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2009-09-17 23:03:32 +02:00
|
|
|
hr = IWineD3DDevice_CreateIndexBuffer(device->WineD3DDevice, size,
|
|
|
|
usage & WINED3DUSAGE_MASK, (WINED3DPOOL)pool, &buffer->wineD3DIndexBuffer,
|
|
|
|
(IUnknown *)buffer, &d3d8_indexbuffer_wined3d_parent_ops);
|
2009-09-17 23:03:30 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d buffer, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->parentDevice = (IDirect3DDevice8 *)device;
|
|
|
|
IUnknown_AddRef(buffer->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|