2004-11-24 19:13:41 +01:00
|
|
|
/*
|
|
|
|
* IWineD3DIndexBuffer Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2004 Jason Edmeades
|
|
|
|
* Copyright 2003-2004 Raphael Junqueira
|
|
|
|
* Copyright 2004 Christian Costa
|
2005-07-13 16:15:54 +02:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2004-11-24 19:13:41 +01: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
|
2004-11-24 19:13:41 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wined3d_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d);
|
2004-11-29 18:53:42 +01:00
|
|
|
#define GLINFO_LOCATION ((IWineD3DImpl *)(((IWineD3DDeviceImpl *)This->resource.wineD3DDevice)->wineD3D))->gl_info
|
2004-11-24 19:13:41 +01:00
|
|
|
|
|
|
|
/* *******************************************
|
|
|
|
IWineD3DIndexBuffer IUnknown parts follow
|
|
|
|
******************************************* */
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_QueryInterface(IWineD3DIndexBuffer *iface, REFIID riid, LPVOID *ppobj)
|
2004-11-24 19:13:41 +01:00
|
|
|
{
|
|
|
|
IWineD3DIndexBufferImpl *This = (IWineD3DIndexBufferImpl *)iface;
|
2005-03-02 14:44:58 +01:00
|
|
|
TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2006-02-06 11:32:41 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DBase)
|
2005-03-02 14:44:58 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DResource)
|
|
|
|
|| IsEqualGUID(riid, &IID_IWineD3DIndexBuffer)){
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*ppobj = This;
|
2006-04-25 23:59:12 +02:00
|
|
|
return S_OK;
|
2005-03-02 14:44:58 +01:00
|
|
|
}
|
2006-04-25 23:59:12 +02:00
|
|
|
*ppobj = NULL;
|
2004-11-24 19:13:41 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static ULONG WINAPI IWineD3DIndexBufferImpl_AddRef(IWineD3DIndexBuffer *iface) {
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl *This = (IWineD3DIndexBufferImpl *)iface;
|
2005-01-19 17:59:01 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->resource.ref);
|
|
|
|
TRACE("(%p) : AddRef increasing from %ld\n", This, ref - 1);
|
2005-07-13 16:15:54 +02:00
|
|
|
return ref;
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static ULONG WINAPI IWineD3DIndexBufferImpl_Release(IWineD3DIndexBuffer *iface) {
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl *This = (IWineD3DIndexBufferImpl *)iface;
|
2005-01-19 17:59:01 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->resource.ref);
|
|
|
|
TRACE("(%p) : Releasing from %ld\n", This, ref + 1);
|
2004-11-24 19:13:41 +01:00
|
|
|
if (ref == 0) {
|
2005-03-29 21:01:00 +02:00
|
|
|
IWineD3DResourceImpl_CleanUp((IWineD3DResource *)iface);
|
2004-11-24 19:13:41 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ****************************************************
|
|
|
|
IWineD3DIndexBuffer IWineD3DResource parts follow
|
|
|
|
**************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_GetDevice(IWineD3DIndexBuffer *iface, IWineD3DDevice** ppDevice) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_GetDevice((IWineD3DResource *)iface, ppDevice);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_SetPrivateData(IWineD3DIndexBuffer *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_SetPrivateData((IWineD3DResource *)iface, refguid, pData, SizeOfData, Flags);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_GetPrivateData(IWineD3DIndexBuffer *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_GetPrivateData((IWineD3DResource *)iface, refguid, pData, pSizeOfData);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_FreePrivateData(IWineD3DIndexBuffer *iface, REFGUID refguid) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_FreePrivateData((IWineD3DResource *)iface, refguid);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DIndexBufferImpl_SetPriority(IWineD3DIndexBuffer *iface, DWORD PriorityNew) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_SetPriority((IWineD3DResource *)iface, PriorityNew);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static DWORD WINAPI IWineD3DIndexBufferImpl_GetPriority(IWineD3DIndexBuffer *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_GetPriority((IWineD3DResource *)iface);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static void WINAPI IWineD3DIndexBufferImpl_PreLoad(IWineD3DIndexBuffer *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_PreLoad((IWineD3DResource *)iface);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static WINED3DRESOURCETYPE WINAPI IWineD3DIndexBufferImpl_GetType(IWineD3DIndexBuffer *iface) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_GetType((IWineD3DResource *)iface);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_GetParent(IWineD3DIndexBuffer *iface, IUnknown **pParent) {
|
2005-01-17 14:44:57 +01:00
|
|
|
return IWineD3DResourceImpl_GetParent((IWineD3DResource *)iface, pParent);
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************************************
|
|
|
|
IWineD3DIndexBuffer IWineD3DIndexBuffer parts follow
|
|
|
|
****************************************************** */
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_Lock(IWineD3DIndexBuffer *iface, UINT OffsetToLock, UINT SizeToLock, BYTE** ppbData, DWORD Flags) {
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl *This = (IWineD3DIndexBufferImpl *)iface;
|
|
|
|
TRACE("(%p) : no real locking yet, offset %d, size %d, Flags=%lx\n", This, OffsetToLock, SizeToLock, Flags);
|
2005-03-29 21:01:00 +02:00
|
|
|
*ppbData = (BYTE *)This->resource.allocatedMemory + OffsetToLock;
|
2006-04-07 12:51:12 +02:00
|
|
|
return WINED3D_OK;
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_Unlock(IWineD3DIndexBuffer *iface) {
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl *This = (IWineD3DIndexBufferImpl *)iface;
|
|
|
|
TRACE("(%p) : stub\n", This);
|
2006-04-07 12:51:12 +02:00
|
|
|
return WINED3D_OK;
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
2006-06-10 13:15:32 +02:00
|
|
|
static HRESULT WINAPI IWineD3DIndexBufferImpl_GetDesc(IWineD3DIndexBuffer *iface, WINED3DINDEXBUFFER_DESC *pDesc) {
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl *This = (IWineD3DIndexBufferImpl *)iface;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
2005-03-29 21:01:00 +02:00
|
|
|
pDesc->Format = This->resource.format;
|
2004-11-24 19:13:41 +01:00
|
|
|
pDesc->Type = This->resource.resourceType;
|
2005-03-29 21:01:00 +02:00
|
|
|
pDesc->Usage = This->resource.usage;
|
|
|
|
pDesc->Pool = This->resource.pool;
|
|
|
|
pDesc->Size = This->resource.size;
|
2006-04-07 12:51:12 +02:00
|
|
|
return WINED3D_OK;
|
2004-11-24 19:13:41 +01:00
|
|
|
}
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
const IWineD3DIndexBufferVtbl IWineD3DIndexBuffer_Vtbl =
|
2004-11-24 19:13:41 +01:00
|
|
|
{
|
2005-07-13 16:15:54 +02:00
|
|
|
/* IUnknown */
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl_QueryInterface,
|
|
|
|
IWineD3DIndexBufferImpl_AddRef,
|
|
|
|
IWineD3DIndexBufferImpl_Release,
|
2005-07-13 16:15:54 +02:00
|
|
|
/* IWineD3DResource */
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl_GetParent,
|
|
|
|
IWineD3DIndexBufferImpl_GetDevice,
|
|
|
|
IWineD3DIndexBufferImpl_SetPrivateData,
|
|
|
|
IWineD3DIndexBufferImpl_GetPrivateData,
|
|
|
|
IWineD3DIndexBufferImpl_FreePrivateData,
|
|
|
|
IWineD3DIndexBufferImpl_SetPriority,
|
|
|
|
IWineD3DIndexBufferImpl_GetPriority,
|
|
|
|
IWineD3DIndexBufferImpl_PreLoad,
|
|
|
|
IWineD3DIndexBufferImpl_GetType,
|
2005-07-13 16:15:54 +02:00
|
|
|
/* IWineD3DIndexBuffer */
|
2004-11-24 19:13:41 +01:00
|
|
|
IWineD3DIndexBufferImpl_Lock,
|
|
|
|
IWineD3DIndexBufferImpl_Unlock,
|
|
|
|
IWineD3DIndexBufferImpl_GetDesc
|
|
|
|
};
|