2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DIndexBuffer9 implementation
|
|
|
|
*
|
2004-11-24 19:13:41 +01:00
|
|
|
* Copyright 2002-2004 Jason Edmeades
|
2003-07-01 03:09:17 +02:00
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-03-11 11:25:30 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
/* IDirect3DIndexBuffer9 IUnknown parts follow: */
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_QueryInterface(LPDIRECT3DINDEXBUFFER9 iface, REFIID riid, LPVOID* ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource9)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DIndexBuffer9)) {
|
2005-03-11 11:25:30 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
*ppobj = This;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DIndexBuffer9Impl_AddRef(LPDIRECT3DINDEXBUFFER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
|
|
|
|
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DIndexBuffer9Impl_Release(LPDIRECT3DINDEXBUFFER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2004-11-24 19:13:41 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
|
|
|
TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (ref == 0) {
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBuffer_Release(This->wineD3DIndexBuffer);
|
2003-07-01 03:09:17 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DIndexBuffer9 IDirect3DResource9 Interface follow: */
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_GetDevice(LPDIRECT3DINDEXBUFFER9 iface, IDirect3DDevice9** ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-07-01 03:09:17 +02:00
|
|
|
return IDirect3DResource9Impl_GetDevice((LPDIRECT3DRESOURCE9) This, ppDevice);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_SetPrivateData(LPDIRECT3DINDEXBUFFER9 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_SetPrivateData(This->wineD3DIndexBuffer, refguid, pData, SizeOfData, Flags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_GetPrivateData(LPDIRECT3DINDEXBUFFER9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_GetPrivateData(This->wineD3DIndexBuffer, refguid, pData, pSizeOfData);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2004-11-24 19:13:41 +01:00
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_FreePrivateData(LPDIRECT3DINDEXBUFFER9 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_FreePrivateData(This->wineD3DIndexBuffer, refguid);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI IDirect3DIndexBuffer9Impl_SetPriority(LPDIRECT3DINDEXBUFFER9 iface, DWORD PriorityNew) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_SetPriority(This->wineD3DIndexBuffer, PriorityNew);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DWORD WINAPI IDirect3DIndexBuffer9Impl_GetPriority(LPDIRECT3DINDEXBUFFER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_GetPriority(This->wineD3DIndexBuffer);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI IDirect3DIndexBuffer9Impl_PreLoad(LPDIRECT3DINDEXBUFFER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_PreLoad(This->wineD3DIndexBuffer);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
D3DRESOURCETYPE WINAPI IDirect3DIndexBuffer9Impl_GetType(LPDIRECT3DINDEXBUFFER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_GetType(This->wineD3DIndexBuffer);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DIndexBuffer9 Interface follow: */
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_Lock(LPDIRECT3DINDEXBUFFER9 iface, UINT OffsetToLock, UINT SizeToLock, void** ppbData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_Lock(This->wineD3DIndexBuffer, OffsetToLock, SizeToLock, (BYTE **)ppbData, Flags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_Unlock(LPDIRECT3DINDEXBUFFER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_Unlock(This->wineD3DIndexBuffer);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer9Impl_GetDesc(LPDIRECT3DINDEXBUFFER9 iface, D3DINDEXBUFFER_DESC *pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *This = (IDirect3DIndexBuffer9Impl *)iface;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2004-11-24 19:13:41 +01:00
|
|
|
return IWineD3DIndexBuffer_GetDesc(This->wineD3DIndexBuffer, pDesc);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-13 01:00:51 +02:00
|
|
|
IDirect3DIndexBuffer9Vtbl Direct3DIndexBuffer9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
|
|
|
IDirect3DIndexBuffer9Impl_QueryInterface,
|
|
|
|
IDirect3DIndexBuffer9Impl_AddRef,
|
|
|
|
IDirect3DIndexBuffer9Impl_Release,
|
|
|
|
IDirect3DIndexBuffer9Impl_GetDevice,
|
|
|
|
IDirect3DIndexBuffer9Impl_SetPrivateData,
|
|
|
|
IDirect3DIndexBuffer9Impl_GetPrivateData,
|
|
|
|
IDirect3DIndexBuffer9Impl_FreePrivateData,
|
|
|
|
IDirect3DIndexBuffer9Impl_SetPriority,
|
|
|
|
IDirect3DIndexBuffer9Impl_GetPriority,
|
|
|
|
IDirect3DIndexBuffer9Impl_PreLoad,
|
|
|
|
IDirect3DIndexBuffer9Impl_GetType,
|
|
|
|
IDirect3DIndexBuffer9Impl_Lock,
|
|
|
|
IDirect3DIndexBuffer9Impl_Unlock,
|
|
|
|
IDirect3DIndexBuffer9Impl_GetDesc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* IDirect3DDevice9 IDirect3DIndexBuffer9 Methods follow: */
|
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_CreateIndexBuffer(LPDIRECT3DDEVICE9 iface,
|
2005-03-11 11:25:30 +01:00
|
|
|
UINT Length, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool,
|
|
|
|
IDirect3DIndexBuffer9** ppIndexBuffer, HANDLE* pSharedHandle) {
|
2004-11-24 19:13:41 +01:00
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DIndexBuffer9Impl *object;
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-01-18 12:42:29 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
2004-11-24 19:13:41 +01:00
|
|
|
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-07-01 03:09:17 +02:00
|
|
|
/* Allocate the storage for the device */
|
2005-03-11 11:25:30 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
2005-01-18 12:42:29 +01:00
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*ppIndexBuffer = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
object->lpVtbl = &Direct3DIndexBuffer9_Vtbl;
|
|
|
|
object->ref = 1;
|
2005-03-11 11:25:30 +01:00
|
|
|
TRACE("Calling wined3d create index buffer\n");
|
|
|
|
hrc = IWineD3DDevice_CreateIndexBuffer(This->WineD3DDevice, Length, Usage, Format, Pool, &object->wineD3DIndexBuffer, pSharedHandle, (IUnknown *)object);
|
2005-01-18 12:42:29 +01:00
|
|
|
if (hrc != D3D_OK) {
|
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateIndexBuffer failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppIndexBuffer = NULL;
|
|
|
|
} else {
|
|
|
|
*ppIndexBuffer = (LPDIRECT3DINDEXBUFFER9) object;
|
|
|
|
}
|
|
|
|
return hrc;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|