2002-09-27 22:46:16 +00:00
|
|
|
/*
|
|
|
|
* IDirect3DIndexBuffer8 implementation
|
|
|
|
*
|
2006-02-25 12:15:08 +00:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2002-09-27 22:46:16 +00: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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-09-27 22:46:16 +00:00
|
|
|
*/
|
|
|
|
|
2003-04-12 00:06:42 +00:00
|
|
|
#include "config.h"
|
2002-09-27 22:46:16 +00:00
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-09-27 22:46:16 +00:00
|
|
|
|
|
|
|
/* IDirect3DIndexBuffer8 IUnknown parts follow: */
|
2006-02-25 12:15:08 +00:00
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_QueryInterface(LPDIRECT3DINDEXBUFFER8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2002-09-27 22:46:16 +00:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2002-12-17 01:15:15 +00:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DResource8)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DIndexBuffer8)) {
|
2006-02-25 12:15:08 +00:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-27 22:46:16 +00:00
|
|
|
*ppobj = This;
|
2006-06-07 13:13:29 +00:00
|
|
|
return S_OK;
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 13:13:29 +00:00
|
|
|
*ppobj = NULL;
|
2002-09-27 22:46:16 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DIndexBuffer8Impl_AddRef(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2005-01-24 11:31:45 +00:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
|
|
|
|
|
|
|
return ref;
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DIndexBuffer8Impl_Release(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2005-01-24 11:31:45 +00:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
if (ref == 0) {
|
|
|
|
IWineD3DIndexBuffer_Release(This->wineD3DIndexBuffer);
|
2006-05-20 16:39:03 +00:00
|
|
|
IUnknown_Release(This->parentDevice);
|
2002-12-17 01:15:15 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
/* IDirect3DIndexBuffer8 IDirect3DResource8 Interface follow: */
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_GetDevice(LPDIRECT3DINDEXBUFFER8 iface, IDirect3DDevice8 **ppDevice) {
|
2005-10-27 10:23:41 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IDirect3DResource8Impl_GetDevice((LPDIRECT3DRESOURCE8) This, ppDevice);
|
2005-10-27 10:23:41 +00:00
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_SetPrivateData(LPDIRECT3DINDEXBUFFER8 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2005-10-27 10:23:41 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_SetPrivateData(This->wineD3DIndexBuffer, refguid, pData, SizeOfData, Flags);
|
2005-10-27 10:23:41 +00:00
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_GetPrivateData(LPDIRECT3DINDEXBUFFER8 iface, REFGUID refguid, void *pData, DWORD *pSizeOfData) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_GetPrivateData(This->wineD3DIndexBuffer, refguid, pData, pSizeOfData);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2006-02-25 12:15:08 +00:00
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_FreePrivateData(LPDIRECT3DINDEXBUFFER8 iface, REFGUID refguid) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_FreePrivateData(This->wineD3DIndexBuffer, refguid);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2006-02-25 12:15:08 +00:00
|
|
|
|
|
|
|
DWORD WINAPI IDirect3DIndexBuffer8Impl_SetPriority(LPDIRECT3DINDEXBUFFER8 iface, DWORD PriorityNew) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_SetPriority(This->wineD3DIndexBuffer, PriorityNew);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2006-02-25 12:15:08 +00:00
|
|
|
|
|
|
|
DWORD WINAPI IDirect3DIndexBuffer8Impl_GetPriority(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_GetPriority(This->wineD3DIndexBuffer);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2006-02-25 12:15:08 +00:00
|
|
|
|
|
|
|
void WINAPI IDirect3DIndexBuffer8Impl_PreLoad(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_PreLoad(This->wineD3DIndexBuffer);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2006-02-25 12:15:08 +00:00
|
|
|
|
2002-09-27 22:46:16 +00:00
|
|
|
D3DRESOURCETYPE WINAPI IDirect3DIndexBuffer8Impl_GetType(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_GetType(This->wineD3DIndexBuffer);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
/* IDirect3DIndexBuffer8 Interface follow: */
|
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_Lock(LPDIRECT3DINDEXBUFFER8 iface, UINT OffsetToLock, UINT SizeToLock, BYTE **ppbData, DWORD Flags) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_Lock(This->wineD3DIndexBuffer, OffsetToLock, SizeToLock, ppbData, Flags);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_Unlock(LPDIRECT3DINDEXBUFFER8 iface) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DIndexBuffer_Unlock(This->wineD3DIndexBuffer);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
2006-02-25 12:15:08 +00:00
|
|
|
|
2002-09-27 22:46:16 +00:00
|
|
|
HRESULT WINAPI IDirect3DIndexBuffer8Impl_GetDesc(LPDIRECT3DINDEXBUFFER8 iface, D3DINDEXBUFFER_DESC *pDesc) {
|
2004-09-08 01:50:37 +00:00
|
|
|
IDirect3DIndexBuffer8Impl *This = (IDirect3DIndexBuffer8Impl *)iface;
|
2006-02-25 12:15:08 +00:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2006-03-14 22:14:40 +00:00
|
|
|
return IWineD3DIndexBuffer_GetDesc(This->wineD3DIndexBuffer, (WINED3DINDEXBUFFER_DESC *) pDesc);
|
2002-09-27 22:46:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-25 12:15:08 +00:00
|
|
|
|
2005-05-27 20:17:35 +00:00
|
|
|
const IDirect3DIndexBuffer8Vtbl Direct3DIndexBuffer8_Vtbl =
|
2002-09-27 22:46:16 +00:00
|
|
|
{
|
2006-02-25 12:15:08 +00:00
|
|
|
/* IUnknown */
|
2002-09-27 22:46:16 +00:00
|
|
|
IDirect3DIndexBuffer8Impl_QueryInterface,
|
|
|
|
IDirect3DIndexBuffer8Impl_AddRef,
|
|
|
|
IDirect3DIndexBuffer8Impl_Release,
|
2006-02-25 12:15:08 +00:00
|
|
|
/* IDirect3DResource8 */
|
2002-09-27 22:46:16 +00:00
|
|
|
IDirect3DIndexBuffer8Impl_GetDevice,
|
|
|
|
IDirect3DIndexBuffer8Impl_SetPrivateData,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetPrivateData,
|
|
|
|
IDirect3DIndexBuffer8Impl_FreePrivateData,
|
|
|
|
IDirect3DIndexBuffer8Impl_SetPriority,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetPriority,
|
|
|
|
IDirect3DIndexBuffer8Impl_PreLoad,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetType,
|
2006-02-25 12:15:08 +00:00
|
|
|
/* IDirect3DIndexBuffer8 */
|
2002-09-27 22:46:16 +00:00
|
|
|
IDirect3DIndexBuffer8Impl_Lock,
|
|
|
|
IDirect3DIndexBuffer8Impl_Unlock,
|
|
|
|
IDirect3DIndexBuffer8Impl_GetDesc
|
|
|
|
};
|