mirror of
https://github.com/reactos/wine.git
synced 2025-02-19 12:21:46 +00:00
d3d: Remove AddRef from IWineD3DDevice_GetIndices.
This commit is contained in:
parent
16b1e046d8
commit
5c4008719c
@ -1311,7 +1311,6 @@ static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface, I
|
||||
rc = IWineD3DDevice_GetIndices(This->WineD3DDevice, &retIndexData, &tmp);
|
||||
if (D3D_OK == rc && NULL != retIndexData) {
|
||||
IWineD3DVertexBuffer_GetParent(retIndexData, (IUnknown **)ppIndexData);
|
||||
IWineD3DVertexBuffer_Release(retIndexData);
|
||||
} else {
|
||||
if(rc != D3D_OK) FIXME("Call to GetIndices failed\n");
|
||||
*ppIndexData = NULL;
|
||||
|
@ -833,7 +833,6 @@ static HRESULT WINAPI IDirect3DDevice9Impl_GetIndices(LPDIRECT3DDEVICE9 iface,
|
||||
rc = IWineD3DDevice_GetIndices(This->WineD3DDevice, &retIndexData, &tmp);
|
||||
if (rc == D3D_OK && NULL != retIndexData) {
|
||||
IWineD3DVertexBuffer_GetParent(retIndexData, (IUnknown **)ppIndexData);
|
||||
IWineD3DVertexBuffer_Release(retIndexData);
|
||||
}else{
|
||||
if(rc != D3D_OK) FIXME("Call to GetIndices failed\n");
|
||||
*ppIndexData = NULL;
|
||||
|
@ -3235,9 +3235,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_GetIndices(IWineD3DDevice *iface, IWine
|
||||
|
||||
*ppIndexData = This->stateBlock->pIndexData;
|
||||
|
||||
/* up ref count on ppindexdata */
|
||||
if (*ppIndexData) {
|
||||
IWineD3DIndexBuffer_AddRef(*ppIndexData);
|
||||
*pBaseVertexIndex = This->stateBlock->baseVertexIndex;
|
||||
TRACE("(%p) index data set to %p + %u\n", This, ppIndexData, This->stateBlock->baseVertexIndex);
|
||||
}else{
|
||||
|
Loading…
x
Reference in New Issue
Block a user