wined3d: Use the baseVertexIndex in the stateblock.
This commit is contained in:
parent
efd0ba8dbc
commit
71631f7638
|
@ -177,9 +177,6 @@ struct IDirect3DDevice8Impl
|
||||||
shader_handle *shader_handles;
|
shader_handle *shader_handles;
|
||||||
shader_handle *free_shader_handles;
|
shader_handle *free_shader_handles;
|
||||||
|
|
||||||
/* FIXME: Move *baseVertexIndex somewhere sensible like wined3d */
|
|
||||||
UINT baseVertexIndex;
|
|
||||||
|
|
||||||
/* Avoids recursion with nested ReleaseRef to 0 */
|
/* Avoids recursion with nested ReleaseRef to 0 */
|
||||||
BOOL inDestruction;
|
BOOL inDestruction;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1134,7 +1134,7 @@ static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitive(LPDIRECT3DDEVICE
|
||||||
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
||||||
TRACE("(%p) Relay\n" , This);
|
TRACE("(%p) Relay\n" , This);
|
||||||
|
|
||||||
return IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, PrimitiveType, This->baseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
|
return IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, PrimitiveType, MinVertexIndex, NumVertices, startIndex, primCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,UINT PrimitiveCount,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) {
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,UINT PrimitiveCount,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) {
|
||||||
|
@ -1307,18 +1307,15 @@ static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderFunction(LPDIRECT3DDEV
|
||||||
static HRESULT WINAPI IDirect3DDevice8Impl_SetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8* pIndexData, UINT baseVertexIndex) {
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8* pIndexData, UINT baseVertexIndex) {
|
||||||
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
||||||
TRACE("(%p) Relay\n", This);
|
TRACE("(%p) Relay\n", This);
|
||||||
/* FIXME: store base vertex index properly */
|
|
||||||
This->baseVertexIndex = baseVertexIndex;
|
|
||||||
return IWineD3DDevice_SetIndices(This->WineD3DDevice,
|
return IWineD3DDevice_SetIndices(This->WineD3DDevice,
|
||||||
NULL == pIndexData ? NULL : ((IDirect3DIndexBuffer8Impl *)pIndexData)->wineD3DIndexBuffer,
|
NULL == pIndexData ? NULL : ((IDirect3DIndexBuffer8Impl *)pIndexData)->wineD3DIndexBuffer,
|
||||||
0);
|
baseVertexIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8** ppIndexData,UINT* pBaseVertexIndex) {
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8** ppIndexData,UINT* pBaseVertexIndex) {
|
||||||
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
||||||
IWineD3DIndexBuffer *retIndexData = NULL;
|
IWineD3DIndexBuffer *retIndexData = NULL;
|
||||||
HRESULT rc = D3D_OK;
|
HRESULT rc = D3D_OK;
|
||||||
UINT tmp;
|
|
||||||
|
|
||||||
TRACE("(%p) Relay\n", This);
|
TRACE("(%p) Relay\n", This);
|
||||||
|
|
||||||
|
@ -1326,7 +1323,7 @@ static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface, I
|
||||||
return D3DERR_INVALIDCALL;
|
return D3DERR_INVALIDCALL;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = IWineD3DDevice_GetIndices(This->WineD3DDevice, &retIndexData, &tmp);
|
rc = IWineD3DDevice_GetIndices(This->WineD3DDevice, &retIndexData, pBaseVertexIndex);
|
||||||
if (D3D_OK == rc && NULL != retIndexData) {
|
if (D3D_OK == rc && NULL != retIndexData) {
|
||||||
IWineD3DIndexBuffer_GetParent(retIndexData, (IUnknown **)ppIndexData);
|
IWineD3DIndexBuffer_GetParent(retIndexData, (IUnknown **)ppIndexData);
|
||||||
IWineD3DIndexBuffer_Release(retIndexData);
|
IWineD3DIndexBuffer_Release(retIndexData);
|
||||||
|
@ -1334,8 +1331,6 @@ static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface, I
|
||||||
if(rc != D3D_OK) FIXME("Call to GetIndices failed\n");
|
if(rc != D3D_OK) FIXME("Call to GetIndices failed\n");
|
||||||
*ppIndexData = NULL;
|
*ppIndexData = NULL;
|
||||||
}
|
}
|
||||||
/* FIXME: store base vertex index properly */
|
|
||||||
*pBaseVertexIndex = This->baseVertexIndex;
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
static HRESULT WINAPI IDirect3DDevice8Impl_CreatePixelShader(LPDIRECT3DDEVICE8 iface, CONST DWORD* pFunction, DWORD* ppShader) {
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreatePixelShader(LPDIRECT3DDEVICE8 iface, CONST DWORD* pFunction, DWORD* ppShader) {
|
||||||
|
|
|
@ -718,7 +718,10 @@ static HRESULT WINAPI IDirect3DDevice9Impl_DrawIndexedPrimitive(LPDIRECT3DDEVI
|
||||||
INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount) {
|
INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount) {
|
||||||
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
||||||
TRACE("(%p) Relay\n" , This);
|
TRACE("(%p) Relay\n" , This);
|
||||||
return IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, PrimitiveType, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
|
|
||||||
|
/* D3D8 passes the baseVertexIndex in SetIndices, and due to the stateblock functions wined3d has to work that way */
|
||||||
|
IWineD3DDevice_SetBaseVertexIndex(This->WineD3DDevice, BaseVertexIndex);
|
||||||
|
return IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, PrimitiveType, MinVertexIndex, NumVertices, startIndex, primCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI IDirect3DDevice9Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE9 iface, D3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, CONST void* pVertexStreamZeroData, UINT VertexStreamZeroStride) {
|
static HRESULT WINAPI IDirect3DDevice9Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE9 iface, D3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, CONST void* pVertexStreamZeroData, UINT VertexStreamZeroStride) {
|
||||||
|
|
|
@ -3697,7 +3697,7 @@ IDirect3DDeviceImpl_7_DrawIndexedPrimitiveVB(IDirect3DDevice7 *iface,
|
||||||
/* Set the index stream */
|
/* Set the index stream */
|
||||||
hr = IWineD3DDevice_SetIndices(This->wineD3DDevice,
|
hr = IWineD3DDevice_SetIndices(This->wineD3DDevice,
|
||||||
This->indexbuffer,
|
This->indexbuffer,
|
||||||
0);
|
StartVertex);
|
||||||
|
|
||||||
/* Set the vertex stream source */
|
/* Set the vertex stream source */
|
||||||
hr = IWineD3DDevice_SetStreamSource(This->wineD3DDevice,
|
hr = IWineD3DDevice_SetStreamSource(This->wineD3DDevice,
|
||||||
|
@ -3714,7 +3714,6 @@ IDirect3DDeviceImpl_7_DrawIndexedPrimitiveVB(IDirect3DDevice7 *iface,
|
||||||
|
|
||||||
hr = IWineD3DDevice_DrawIndexedPrimitive(This->wineD3DDevice,
|
hr = IWineD3DDevice_DrawIndexedPrimitive(This->wineD3DDevice,
|
||||||
PrimitiveType,
|
PrimitiveType,
|
||||||
StartVertex,
|
|
||||||
0 /* minIndex */,
|
0 /* minIndex */,
|
||||||
NumVertices,
|
NumVertices,
|
||||||
0 /* StartIndex */,
|
0 /* StartIndex */,
|
||||||
|
|
|
@ -2992,6 +2992,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetIndices(IWineD3DDevice *iface, IWine
|
||||||
UINT BaseVertexIndex) {
|
UINT BaseVertexIndex) {
|
||||||
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
||||||
IWineD3DIndexBuffer *oldIdxs;
|
IWineD3DIndexBuffer *oldIdxs;
|
||||||
|
UINT oldBaseIndex = This->updateStateBlock->baseVertexIndex;
|
||||||
|
|
||||||
TRACE("(%p) : Setting to %p, base %d\n", This, pIndexData, BaseVertexIndex);
|
TRACE("(%p) : Setting to %p, base %d\n", This, pIndexData, BaseVertexIndex);
|
||||||
oldIdxs = This->updateStateBlock->pIndexData;
|
oldIdxs = This->updateStateBlock->pIndexData;
|
||||||
|
@ -3013,6 +3014,11 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetIndices(IWineD3DDevice *iface, IWine
|
||||||
if (NULL != oldIdxs) {
|
if (NULL != oldIdxs) {
|
||||||
IWineD3DIndexBuffer_Release(oldIdxs);
|
IWineD3DIndexBuffer_Release(oldIdxs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* So far only the base vertex index is tracked */
|
||||||
|
if(BaseVertexIndex != oldBaseIndex) {
|
||||||
|
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_STREAMSRC);
|
||||||
|
}
|
||||||
return WINED3D_OK;
|
return WINED3D_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3034,6 +3040,26 @@ static HRESULT WINAPI IWineD3DDeviceImpl_GetIndices(IWineD3DDevice *iface, IWine
|
||||||
return WINED3D_OK;
|
return WINED3D_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Method to offer d3d9 a simple way to set the base vertex index without messing with the index buffer */
|
||||||
|
static HRESULT WINAPI IWineD3DDeviceImpl_SetBasevertexIndex(IWineD3DDevice *iface, UINT BaseIndex) {
|
||||||
|
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
||||||
|
TRACE("(%p)->(%d)\n", This, BaseIndex);
|
||||||
|
|
||||||
|
if(This->updateStateBlock->baseVertexIndex == BaseIndex) {
|
||||||
|
TRACE("Application is setting the old value over, nothing to do\n");
|
||||||
|
return WINED3D_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
This->updateStateBlock->baseVertexIndex = BaseIndex;
|
||||||
|
|
||||||
|
if (This->isRecordingState) {
|
||||||
|
TRACE("Recording... not performing anything\n");
|
||||||
|
return WINED3D_OK;
|
||||||
|
}
|
||||||
|
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_STREAMSRC);
|
||||||
|
return WINED3D_OK;
|
||||||
|
}
|
||||||
|
|
||||||
/*****
|
/*****
|
||||||
* Get / Set Viewports
|
* Get / Set Viewports
|
||||||
*****/
|
*****/
|
||||||
|
@ -4669,18 +4695,18 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DrawPrimitive(IWineD3DDevice *iface, WI
|
||||||
TRACE("(%p) : Type=(%d,%s), Start=%d, Count=%d\n", This, PrimitiveType,
|
TRACE("(%p) : Type=(%d,%s), Start=%d, Count=%d\n", This, PrimitiveType,
|
||||||
debug_d3dprimitivetype(PrimitiveType),
|
debug_d3dprimitivetype(PrimitiveType),
|
||||||
StartVertex, PrimitiveCount);
|
StartVertex, PrimitiveCount);
|
||||||
drawPrimitive(iface, PrimitiveType, PrimitiveCount, StartVertex, 0/* NumVertices */, -1 /* indxStart */,
|
|
||||||
|
if(StartVertex - This->stateBlock->baseVertexIndex < 0) ERR("Drawing negative\n");
|
||||||
|
/* Account for the loading offset due to index buffers. Instead of reloading all sources correct it with the startvertex parameter */
|
||||||
|
drawPrimitive(iface, PrimitiveType, PrimitiveCount, StartVertex - This->stateBlock->baseVertexIndex, 0/* NumVertices */, -1 /* indxStart */,
|
||||||
0 /* indxSize */, NULL /* indxData */, 0 /* minIndex */, NULL);
|
0 /* indxSize */, NULL /* indxData */, 0 /* minIndex */, NULL);
|
||||||
|
|
||||||
|
|
||||||
return WINED3D_OK;
|
return WINED3D_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: baseVIndex needs to be provided from This->stateBlock->baseVertexIndex when called from d3d8 */
|
/* TODO: baseVIndex needs to be provided from This->stateBlock->baseVertexIndex when called from d3d8 */
|
||||||
static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitive(IWineD3DDevice *iface,
|
static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitive(IWineD3DDevice *iface,
|
||||||
WINED3DPRIMITIVETYPE PrimitiveType,
|
WINED3DPRIMITIVETYPE PrimitiveType,
|
||||||
INT baseVIndex, UINT minIndex,
|
UINT minIndex, UINT NumVertices, UINT startIndex, UINT primCount) {
|
||||||
UINT NumVertices, UINT startIndex, UINT primCount) {
|
|
||||||
|
|
||||||
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
||||||
UINT idxStride = 2;
|
UINT idxStride = 2;
|
||||||
|
@ -4690,9 +4716,9 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitive(IWineD3DDevice *
|
||||||
pIB = This->stateBlock->pIndexData;
|
pIB = This->stateBlock->pIndexData;
|
||||||
This->stateBlock->streamIsUP = FALSE;
|
This->stateBlock->streamIsUP = FALSE;
|
||||||
|
|
||||||
TRACE("(%p) : Type=(%d,%s), min=%d, CountV=%d, startIdx=%d, baseVidx=%d, countP=%d\n", This,
|
TRACE("(%p) : Type=(%d,%s), min=%d, CountV=%d, startIdx=%d, countP=%d\n", This,
|
||||||
PrimitiveType, debug_d3dprimitivetype(PrimitiveType),
|
PrimitiveType, debug_d3dprimitivetype(PrimitiveType),
|
||||||
minIndex, NumVertices, startIndex, baseVIndex, primCount);
|
minIndex, NumVertices, startIndex, primCount);
|
||||||
|
|
||||||
IWineD3DIndexBuffer_GetDesc(pIB, &IdxBufDsc);
|
IWineD3DIndexBuffer_GetDesc(pIB, &IdxBufDsc);
|
||||||
if (IdxBufDsc.Format == WINED3DFMT_INDEX16) {
|
if (IdxBufDsc.Format == WINED3DFMT_INDEX16) {
|
||||||
|
@ -4701,7 +4727,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitive(IWineD3DDevice *
|
||||||
idxStride = 4;
|
idxStride = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
drawPrimitive(iface, PrimitiveType, primCount, baseVIndex, NumVertices, startIndex,
|
drawPrimitive(iface, PrimitiveType, primCount, 0, NumVertices, startIndex,
|
||||||
idxStride, ((IWineD3DIndexBufferImpl *) pIB)->resource.allocatedMemory, minIndex, NULL);
|
idxStride, ((IWineD3DIndexBufferImpl *) pIB)->resource.allocatedMemory, minIndex, NULL);
|
||||||
|
|
||||||
return WINED3D_OK;
|
return WINED3D_OK;
|
||||||
|
@ -4726,10 +4752,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DrawPrimitiveUP(IWineD3DDevice *iface,
|
||||||
This->stateBlock->streamStride[0] = VertexStreamZeroStride;
|
This->stateBlock->streamStride[0] = VertexStreamZeroStride;
|
||||||
This->stateBlock->streamIsUP = TRUE;
|
This->stateBlock->streamIsUP = TRUE;
|
||||||
|
|
||||||
/* Mark the state dirty until we have nicer tracking */
|
drawPrimitive(iface, PrimitiveType, PrimitiveCount, -This->stateBlock->baseVertexIndex /* start vertex */, 0 /* NumVertices */,
|
||||||
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_VDECL);
|
|
||||||
|
|
||||||
drawPrimitive(iface, PrimitiveType, PrimitiveCount, 0 /* start vertex */, 0 /* NumVertices */,
|
|
||||||
0 /* indxStart*/, 0 /* indxSize*/, NULL /* indxData */, 0 /* indxMin */, NULL);
|
0 /* indxStart*/, 0 /* indxSize*/, NULL /* indxData */, 0 /* indxMin */, NULL);
|
||||||
|
|
||||||
/* MSDN specifies stream zero settings must be set to NULL */
|
/* MSDN specifies stream zero settings must be set to NULL */
|
||||||
|
@ -4774,6 +4797,8 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitiveUP(IWineD3DDevice *
|
||||||
|
|
||||||
/* Mark the state dirty until we have nicer tracking */
|
/* Mark the state dirty until we have nicer tracking */
|
||||||
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_VDECL);
|
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_VDECL);
|
||||||
|
/* Set to 0 as per msdn. Do it now due to the stream source loading during drawPrimitive */
|
||||||
|
This->stateBlock->baseVertexIndex = 0;
|
||||||
|
|
||||||
drawPrimitive(iface, PrimitiveType, PrimitiveCount, 0 /* vertexStart */, NumVertices, 0 /* indxStart */, idxStride, pIndexData, MinVertexIndex, NULL);
|
drawPrimitive(iface, PrimitiveType, PrimitiveCount, 0 /* vertexStart */, NumVertices, 0 /* indxStart */, idxStride, pIndexData, MinVertexIndex, NULL);
|
||||||
|
|
||||||
|
@ -4788,8 +4813,12 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitiveUP(IWineD3DDevice *
|
||||||
static HRESULT WINAPI IWineD3DDeviceImpl_DrawPrimitiveStrided (IWineD3DDevice *iface, WINED3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, WineDirect3DVertexStridedData *DrawPrimStrideData) {
|
static HRESULT WINAPI IWineD3DDeviceImpl_DrawPrimitiveStrided (IWineD3DDevice *iface, WINED3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, WineDirect3DVertexStridedData *DrawPrimStrideData) {
|
||||||
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface;
|
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface;
|
||||||
|
|
||||||
/* Mark the state dirty until we have nicer tracking */
|
/* Mark the state dirty until we have nicer tracking
|
||||||
|
* its fine to change baseVertexIndex because that call is only called by ddraw which does not need
|
||||||
|
* that value.
|
||||||
|
*/
|
||||||
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_VDECL);
|
IWineD3DDeviceImpl_MarkStateDirty(This, STATE_VDECL);
|
||||||
|
This->stateBlock->baseVertexIndex = 0;
|
||||||
drawPrimitive(iface, PrimitiveType, PrimitiveCount, 0, 0, 0, 0, NULL, 0, DrawPrimStrideData);
|
drawPrimitive(iface, PrimitiveType, PrimitiveCount, 0, 0, 0, 0, NULL, 0, DrawPrimStrideData);
|
||||||
return WINED3D_OK;
|
return WINED3D_OK;
|
||||||
}
|
}
|
||||||
|
@ -6689,6 +6718,7 @@ const IWineD3DDeviceVtbl IWineD3DDevice_Vtbl =
|
||||||
IWineD3DDeviceImpl_GetGammaRamp,
|
IWineD3DDeviceImpl_GetGammaRamp,
|
||||||
IWineD3DDeviceImpl_SetIndices,
|
IWineD3DDeviceImpl_SetIndices,
|
||||||
IWineD3DDeviceImpl_GetIndices,
|
IWineD3DDeviceImpl_GetIndices,
|
||||||
|
IWineD3DDeviceImpl_SetBasevertexIndex,
|
||||||
IWineD3DDeviceImpl_SetLight,
|
IWineD3DDeviceImpl_SetLight,
|
||||||
IWineD3DDeviceImpl_GetLight,
|
IWineD3DDeviceImpl_GetLight,
|
||||||
IWineD3DDeviceImpl_SetLightEnable,
|
IWineD3DDeviceImpl_SetLightEnable,
|
||||||
|
|
|
@ -392,7 +392,6 @@ void primitiveDeclarationConvertToStridedData(
|
||||||
IWineD3DDevice *iface,
|
IWineD3DDevice *iface,
|
||||||
BOOL useVertexShaderFunction,
|
BOOL useVertexShaderFunction,
|
||||||
WineDirect3DVertexStridedData *strided,
|
WineDirect3DVertexStridedData *strided,
|
||||||
LONG BaseVertexIndex,
|
|
||||||
BOOL *fixup) {
|
BOOL *fixup) {
|
||||||
|
|
||||||
/* We need to deal with frequency data!*/
|
/* We need to deal with frequency data!*/
|
||||||
|
@ -442,7 +441,6 @@ void primitiveDeclarationConvertToStridedData(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stride = This->stateBlock->streamStride[element->Stream];
|
stride = This->stateBlock->streamStride[element->Stream];
|
||||||
data += (BaseVertexIndex * stride);
|
|
||||||
data += element->Offset;
|
data += element->Offset;
|
||||||
reg = element->Reg;
|
reg = element->Reg;
|
||||||
|
|
||||||
|
@ -594,7 +592,7 @@ void primitiveConvertFVFtoOffset(DWORD thisFVF, DWORD stride, BYTE *data, WineDi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void primitiveConvertToStridedData(IWineD3DDevice *iface, WineDirect3DVertexStridedData *strided, LONG BaseVertexIndex, BOOL *fixup) {
|
void primitiveConvertToStridedData(IWineD3DDevice *iface, WineDirect3DVertexStridedData *strided, BOOL *fixup) {
|
||||||
|
|
||||||
short LoopThroughTo = 0;
|
short LoopThroughTo = 0;
|
||||||
short nStream;
|
short nStream;
|
||||||
|
@ -646,10 +644,6 @@ void primitiveConvertToStridedData(IWineD3DDevice *iface, WineDirect3DVertexStri
|
||||||
if (thisFVF == 0) continue;
|
if (thisFVF == 0) continue;
|
||||||
|
|
||||||
/* Now convert the stream into pointers */
|
/* Now convert the stream into pointers */
|
||||||
|
|
||||||
/* Shuffle to the beginning of the vertexes to render and index from there */
|
|
||||||
data = data + (BaseVertexIndex * stride);
|
|
||||||
|
|
||||||
primitiveConvertFVFtoOffset(thisFVF, stride, data, strided, streamVBO);
|
primitiveConvertFVFtoOffset(thisFVF, stride, data, strided, streamVBO);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -832,7 +826,7 @@ static void loadNumberedArrays(
|
||||||
WINED3D_ATR_GLTYPE(strided->u.input[i].dwType),
|
WINED3D_ATR_GLTYPE(strided->u.input[i].dwType),
|
||||||
WINED3D_ATR_NORMALIZED(strided->u.input[i].dwType),
|
WINED3D_ATR_NORMALIZED(strided->u.input[i].dwType),
|
||||||
strided->u.input[i].dwStride,
|
strided->u.input[i].dwStride,
|
||||||
strided->u.input[i].lpData));
|
strided->u.input[i].lpData + This->stateBlock->baseVertexIndex * strided->u.input[i].dwStride));
|
||||||
GL_EXTCALL(glEnableVertexAttribArrayARB(i));
|
GL_EXTCALL(glEnableVertexAttribArrayARB(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -876,7 +870,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TRACE("Blend %d %p %d\n", WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType),
|
TRACE("Blend %d %p %d\n", WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType),
|
||||||
sd->u.s.blendWeights.lpData, sd->u.s.blendWeights.dwStride);
|
sd->u.s.blendWeights.lpData + This->stateBlock->baseVertexIndex * sd->u.s.blendWeights.dwStride, sd->u.s.blendWeights.dwStride);
|
||||||
/* FIXME("TODO\n");*/
|
/* FIXME("TODO\n");*/
|
||||||
/* Note dwType == float3 or float4 == 2 or 3 */
|
/* Note dwType == float3 or float4 == 2 or 3 */
|
||||||
|
|
||||||
|
@ -891,7 +885,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
VTRACE(("glWeightPointerARB(%d, GL_FLOAT, %d, %p)\n",
|
VTRACE(("glWeightPointerARB(%d, GL_FLOAT, %d, %p)\n",
|
||||||
WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType) ,
|
WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType) ,
|
||||||
sd->u.s.blendWeights.dwStride,
|
sd->u.s.blendWeights.dwStride,
|
||||||
sd->u.s.blendWeights.lpData));
|
sd->u.s.blendWeights.lpData + This->stateBlock->baseVertexIndex * sd->u.s.blendWeights.dwStride));
|
||||||
|
|
||||||
if(curVBO != sd->u.s.blendWeights.VBO) {
|
if(curVBO != sd->u.s.blendWeights.VBO) {
|
||||||
GL_EXTCALL(glBindBufferARB(GL_ARRAY_BUFFER_ARB, sd->u.s.blendWeights.VBO));
|
GL_EXTCALL(glBindBufferARB(GL_ARRAY_BUFFER_ARB, sd->u.s.blendWeights.VBO));
|
||||||
|
@ -903,7 +897,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType),
|
WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType),
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.blendWeights.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.blendWeights.dwType),
|
||||||
sd->u.s.blendWeights.dwStride,
|
sd->u.s.blendWeights.dwStride,
|
||||||
sd->u.s.blendWeights.lpData);
|
sd->u.s.blendWeights.lpData + This->stateBlock->baseVertexIndex * sd->u.s.blendWeights.dwStride);
|
||||||
|
|
||||||
checkGLcall("glWeightPointerARB");
|
checkGLcall("glWeightPointerARB");
|
||||||
|
|
||||||
|
@ -923,7 +917,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType),
|
WINED3D_ATR_SIZE(sd->u.s.blendWeights.dwType),
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.blendWeights.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.blendWeights.dwType),
|
||||||
sd->u.s.blendWeights.dwStride,
|
sd->u.s.blendWeights.dwStride,
|
||||||
sd->u.s.blendWeights.lpData);
|
sd->u.s.blendWeights.lpData + This->stateBlock->baseVertexIndex * sd->u.s.blendWeights.dwStride);
|
||||||
checkGLcall("glVertexWeightPointerEXT(numBlends, ...)");
|
checkGLcall("glVertexWeightPointerEXT(numBlends, ...)");
|
||||||
glEnableClientState(GL_VERTEX_WEIGHT_ARRAY_EXT);
|
glEnableClientState(GL_VERTEX_WEIGHT_ARRAY_EXT);
|
||||||
checkGLcall("glEnableClientState(GL_VERTEX_WEIGHT_ARRAY_EXT)");
|
checkGLcall("glEnableClientState(GL_VERTEX_WEIGHT_ARRAY_EXT)");
|
||||||
|
@ -955,7 +949,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
(GL_EXTCALL)(FogCoordPointerEXT)(
|
(GL_EXTCALL)(FogCoordPointerEXT)(
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.fog.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.fog.dwType),
|
||||||
sd->u.s.fog.dwStride,
|
sd->u.s.fog.dwStride,
|
||||||
sd->u.s.fog.lpData);
|
sd->u.s.fog.lpData + This->stateBlock->baseVertexIndex * sd->u.s.fog.dwStride);
|
||||||
} else {
|
} else {
|
||||||
/* don't bother falling back to 'slow' as we don't support software FOG yet. */
|
/* don't bother falling back to 'slow' as we don't support software FOG yet. */
|
||||||
/* FIXME: fixme once */
|
/* FIXME: fixme once */
|
||||||
|
@ -979,7 +973,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
(GL_EXTCALL)(TangentPointerEXT)(
|
(GL_EXTCALL)(TangentPointerEXT)(
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.tangent.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.tangent.dwType),
|
||||||
sd->u.s.tangent.dwStride,
|
sd->u.s.tangent.dwStride,
|
||||||
sd->u.s.tangent.lpData);
|
sd->u.s.tangent.lpData + This->stateBlock->baseVertexIndex * sd->u.s.tangent.dwStride);
|
||||||
} else {
|
} else {
|
||||||
glDisable(GL_TANGENT_ARRAY_EXT);
|
glDisable(GL_TANGENT_ARRAY_EXT);
|
||||||
}
|
}
|
||||||
|
@ -988,7 +982,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
(GL_EXTCALL)(BinormalPointerEXT)(
|
(GL_EXTCALL)(BinormalPointerEXT)(
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.binormal.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.binormal.dwType),
|
||||||
sd->u.s.binormal.dwStride,
|
sd->u.s.binormal.dwStride,
|
||||||
sd->u.s.binormal.lpData);
|
sd->u.s.binormal.lpData + This->stateBlock->baseVertexIndex * sd->u.s.binormal.dwStride);
|
||||||
} else{
|
} else{
|
||||||
glDisable(GL_BINORMAL_ARRAY_EXT);
|
glDisable(GL_BINORMAL_ARRAY_EXT);
|
||||||
}
|
}
|
||||||
|
@ -1041,12 +1035,12 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
if(sd->u.s.position.VBO == 0) {
|
if(sd->u.s.position.VBO == 0) {
|
||||||
glVertexPointer(3 /* min(WINED3D_ATR_SIZE(sd->u.s.position.dwType),3) */,
|
glVertexPointer(3 /* min(WINED3D_ATR_SIZE(sd->u.s.position.dwType),3) */,
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.position.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.position.dwType),
|
||||||
sd->u.s.position.dwStride, sd->u.s.position.lpData);
|
sd->u.s.position.dwStride, sd->u.s.position.lpData + This->stateBlock->baseVertexIndex * sd->u.s.position.dwStride);
|
||||||
} else {
|
} else {
|
||||||
glVertexPointer(
|
glVertexPointer(
|
||||||
WINED3D_ATR_SIZE(sd->u.s.position.dwType),
|
WINED3D_ATR_SIZE(sd->u.s.position.dwType),
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.position.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.position.dwType),
|
||||||
sd->u.s.position.dwStride, sd->u.s.position.lpData);
|
sd->u.s.position.dwStride, sd->u.s.position.lpData + This->stateBlock->baseVertexIndex * sd->u.s.position.dwStride);
|
||||||
}
|
}
|
||||||
checkGLcall("glVertexPointer(...)");
|
checkGLcall("glVertexPointer(...)");
|
||||||
glEnableClientState(GL_VERTEX_ARRAY);
|
glEnableClientState(GL_VERTEX_ARRAY);
|
||||||
|
@ -1071,7 +1065,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
glNormalPointer(
|
glNormalPointer(
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.normal.dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.normal.dwType),
|
||||||
sd->u.s.normal.dwStride,
|
sd->u.s.normal.dwStride,
|
||||||
sd->u.s.normal.lpData);
|
sd->u.s.normal.lpData + This->stateBlock->baseVertexIndex * sd->u.s.normal.dwStride);
|
||||||
checkGLcall("glNormalPointer(...)");
|
checkGLcall("glNormalPointer(...)");
|
||||||
glEnableClientState(GL_NORMAL_ARRAY);
|
glEnableClientState(GL_NORMAL_ARRAY);
|
||||||
checkGLcall("glEnableClientState(GL_NORMAL_ARRAY)");
|
checkGLcall("glEnableClientState(GL_NORMAL_ARRAY)");
|
||||||
|
@ -1105,7 +1099,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
}
|
}
|
||||||
glColorPointer(4, GL_UNSIGNED_BYTE,
|
glColorPointer(4, GL_UNSIGNED_BYTE,
|
||||||
sd->u.s.diffuse.dwStride,
|
sd->u.s.diffuse.dwStride,
|
||||||
sd->u.s.diffuse.lpData);
|
sd->u.s.diffuse.lpData + This->stateBlock->baseVertexIndex * sd->u.s.diffuse.dwStride);
|
||||||
checkGLcall("glColorPointer(4, GL_UNSIGNED_BYTE, ...)");
|
checkGLcall("glColorPointer(4, GL_UNSIGNED_BYTE, ...)");
|
||||||
glEnableClientState(GL_COLOR_ARRAY);
|
glEnableClientState(GL_COLOR_ARRAY);
|
||||||
checkGLcall("glEnableClientState(GL_COLOR_ARRAY)");
|
checkGLcall("glEnableClientState(GL_COLOR_ARRAY)");
|
||||||
|
@ -1132,7 +1126,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
}
|
}
|
||||||
GL_EXTCALL(glSecondaryColorPointerEXT)(4, GL_UNSIGNED_BYTE,
|
GL_EXTCALL(glSecondaryColorPointerEXT)(4, GL_UNSIGNED_BYTE,
|
||||||
sd->u.s.specular.dwStride,
|
sd->u.s.specular.dwStride,
|
||||||
sd->u.s.specular.lpData);
|
sd->u.s.specular.lpData + This->stateBlock->baseVertexIndex * sd->u.s.specular.dwStride);
|
||||||
vcheckGLcall("glSecondaryColorPointerEXT(4, GL_UNSIGNED_BYTE, ...)");
|
vcheckGLcall("glSecondaryColorPointerEXT(4, GL_UNSIGNED_BYTE, ...)");
|
||||||
glEnableClientState(GL_SECONDARY_COLOR_ARRAY_EXT);
|
glEnableClientState(GL_SECONDARY_COLOR_ARRAY_EXT);
|
||||||
vcheckGLcall("glEnableClientState(GL_SECONDARY_COLOR_ARRAY_EXT)");
|
vcheckGLcall("glEnableClientState(GL_SECONDARY_COLOR_ARRAY_EXT)");
|
||||||
|
@ -1197,7 +1191,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
WINED3D_ATR_SIZE(sd->u.s.texCoords[coordIdx].dwType),
|
WINED3D_ATR_SIZE(sd->u.s.texCoords[coordIdx].dwType),
|
||||||
WINED3D_ATR_GLTYPE(sd->u.s.texCoords[coordIdx].dwType),
|
WINED3D_ATR_GLTYPE(sd->u.s.texCoords[coordIdx].dwType),
|
||||||
sd->u.s.texCoords[coordIdx].dwStride,
|
sd->u.s.texCoords[coordIdx].dwStride,
|
||||||
sd->u.s.texCoords[coordIdx].lpData);
|
sd->u.s.texCoords[coordIdx].lpData + This->stateBlock->baseVertexIndex * sd->u.s.texCoords[coordIdx].dwStride);
|
||||||
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
|
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
|
||||||
}
|
}
|
||||||
} else if (!GL_SUPPORT(NV_REGISTER_COMBINERS)) {
|
} else if (!GL_SUPPORT(NV_REGISTER_COMBINERS)) {
|
||||||
|
@ -1216,7 +1210,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
}
|
}
|
||||||
|
|
||||||
static void drawStridedFast(IWineD3DDevice *iface,UINT numberOfVertices, GLenum glPrimitiveType,
|
static void drawStridedFast(IWineD3DDevice *iface,UINT numberOfVertices, GLenum glPrimitiveType,
|
||||||
const void *idxData, short idxSize, ULONG minIndex, ULONG startIdx) {
|
const void *idxData, short idxSize, ULONG minIndex, ULONG startIdx, ULONG startVertex) {
|
||||||
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
||||||
|
|
||||||
if (idxData != NULL /* This crashes sometimes!*/) {
|
if (idxData != NULL /* This crashes sometimes!*/) {
|
||||||
|
@ -1241,7 +1235,7 @@ static void drawStridedFast(IWineD3DDevice *iface,UINT numberOfVertices, GLenum
|
||||||
|
|
||||||
/* Note first is now zero as we shuffled along earlier */
|
/* Note first is now zero as we shuffled along earlier */
|
||||||
TRACE("(%p) : glDrawArrays(%x, 0, %d)\n", This, glPrimitiveType, numberOfVertices);
|
TRACE("(%p) : glDrawArrays(%x, 0, %d)\n", This, glPrimitiveType, numberOfVertices);
|
||||||
glDrawArrays(glPrimitiveType, 0, numberOfVertices);
|
glDrawArrays(glPrimitiveType, startVertex, numberOfVertices);
|
||||||
checkGLcall("glDrawArrays");
|
checkGLcall("glDrawArrays");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1256,13 +1250,12 @@ static void drawStridedFast(IWineD3DDevice *iface,UINT numberOfVertices, GLenum
|
||||||
|
|
||||||
static void drawStridedSlow(IWineD3DDevice *iface, WineDirect3DVertexStridedData *sd,
|
static void drawStridedSlow(IWineD3DDevice *iface, WineDirect3DVertexStridedData *sd,
|
||||||
UINT NumVertexes, GLenum glPrimType,
|
UINT NumVertexes, GLenum glPrimType,
|
||||||
const void *idxData, short idxSize, ULONG minIndex, ULONG startIdx) {
|
const void *idxData, short idxSize, ULONG minIndex, ULONG startIdx, ULONG startVertex) {
|
||||||
|
|
||||||
unsigned int textureNo = 0;
|
unsigned int textureNo = 0;
|
||||||
unsigned int texture_idx = 0;
|
unsigned int texture_idx = 0;
|
||||||
const short *pIdxBufS = NULL;
|
const short *pIdxBufS = NULL;
|
||||||
const long *pIdxBufL = NULL;
|
const long *pIdxBufL = NULL;
|
||||||
LONG SkipnStrides = 0;
|
|
||||||
LONG vx_index;
|
LONG vx_index;
|
||||||
float x = 0.0f, y = 0.0f, z = 0.0f; /* x,y,z coordinates */
|
float x = 0.0f, y = 0.0f, z = 0.0f; /* x,y,z coordinates */
|
||||||
float nx = 0.0f, ny = 0.0, nz = 0.0f; /* normal x,y,z coordinates */
|
float nx = 0.0f, ny = 0.0, nz = 0.0f; /* normal x,y,z coordinates */
|
||||||
|
@ -1271,6 +1264,7 @@ static void drawStridedSlow(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
DWORD diffuseColor = 0xFFFFFFFF; /* Diffuse Color */
|
DWORD diffuseColor = 0xFFFFFFFF; /* Diffuse Color */
|
||||||
DWORD specularColor = 0; /* Specular Color */
|
DWORD specularColor = 0; /* Specular Color */
|
||||||
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
|
||||||
|
LONG SkipnStrides = startVertex + This->stateBlock->baseVertexIndex;
|
||||||
|
|
||||||
TRACE("Using slow vertex array code\n");
|
TRACE("Using slow vertex array code\n");
|
||||||
|
|
||||||
|
@ -1300,10 +1294,10 @@ static void drawStridedSlow(IWineD3DDevice *iface, WineDirect3DVertexStridedData
|
||||||
/* Indexed so work out the number of strides to skip */
|
/* Indexed so work out the number of strides to skip */
|
||||||
if (idxSize == 2) {
|
if (idxSize == 2) {
|
||||||
VTRACE(("Idx for vertex %d = %d\n", vx_index, pIdxBufS[startIdx+vx_index]));
|
VTRACE(("Idx for vertex %d = %d\n", vx_index, pIdxBufS[startIdx+vx_index]));
|
||||||
SkipnStrides = pIdxBufS[startIdx + vx_index];
|
SkipnStrides = pIdxBufS[startIdx + vx_index] + This->stateBlock->baseVertexIndex;
|
||||||
} else {
|
} else {
|
||||||
VTRACE(("Idx for vertex %d = %d\n", vx_index, pIdxBufL[startIdx+vx_index]));
|
VTRACE(("Idx for vertex %d = %d\n", vx_index, pIdxBufL[startIdx+vx_index]));
|
||||||
SkipnStrides = pIdxBufL[startIdx + vx_index];
|
SkipnStrides = pIdxBufL[startIdx + vx_index] + This->stateBlock->baseVertexIndex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1717,6 +1711,7 @@ inline static void drawPrimitiveDrawStrided(
|
||||||
BOOL useVertexShaderFunction,
|
BOOL useVertexShaderFunction,
|
||||||
BOOL usePixelShaderFunction,
|
BOOL usePixelShaderFunction,
|
||||||
WineDirect3DVertexStridedData *dataLocations,
|
WineDirect3DVertexStridedData *dataLocations,
|
||||||
|
ULONG baseVIndex,
|
||||||
UINT numberOfvertices,
|
UINT numberOfvertices,
|
||||||
UINT numberOfIndicies,
|
UINT numberOfIndicies,
|
||||||
GLenum glPrimType,
|
GLenum glPrimType,
|
||||||
|
@ -1789,9 +1784,9 @@ inline static void drawPrimitiveDrawStrided(
|
||||||
|
|
||||||
/* Draw vertex-by-vertex */
|
/* Draw vertex-by-vertex */
|
||||||
if (useDrawStridedSlow)
|
if (useDrawStridedSlow)
|
||||||
drawStridedSlow(iface, dataLocations, numberOfIndicies, glPrimType, idxData, idxSize, minIndex, StartIdx);
|
drawStridedSlow(iface, dataLocations, numberOfIndicies, glPrimType, idxData, idxSize, minIndex, StartIdx, baseVIndex);
|
||||||
else
|
else
|
||||||
drawStridedFast(iface, numberOfIndicies, glPrimType, idxData, idxSize, minIndex, StartIdx);
|
drawStridedFast(iface, numberOfIndicies, glPrimType, idxData, idxSize, minIndex, StartIdx, baseVIndex);
|
||||||
|
|
||||||
/* Cleanup any shaders */
|
/* Cleanup any shaders */
|
||||||
This->shader_backend->shader_cleanup(usePixelShaderFunction, useVertexShaderFunction);
|
This->shader_backend->shader_cleanup(usePixelShaderFunction, useVertexShaderFunction);
|
||||||
|
@ -2020,7 +2015,7 @@ void drawPrimitive(IWineD3DDevice *iface,
|
||||||
((IWineD3DVertexShaderImpl *)This->stateBlock->vertexShader)->vertexDeclaration != NULL)
|
((IWineD3DVertexShaderImpl *)This->stateBlock->vertexShader)->vertexDeclaration != NULL)
|
||||||
|
|
||||||
primitiveDeclarationConvertToStridedData(iface, useVertexShaderFunction,
|
primitiveDeclarationConvertToStridedData(iface, useVertexShaderFunction,
|
||||||
&This->strided_streams, StartVertexIndex, &fixup);
|
&This->strided_streams, &fixup);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -2030,7 +2025,7 @@ void drawPrimitive(IWineD3DDevice *iface,
|
||||||
|
|
||||||
TRACE("================ FVF ===================\n");
|
TRACE("================ FVF ===================\n");
|
||||||
memset(&This->strided_streams, 0, sizeof(This->strided_streams));
|
memset(&This->strided_streams, 0, sizeof(This->strided_streams));
|
||||||
primitiveConvertToStridedData(iface, &This->strided_streams, StartVertexIndex, &fixup);
|
primitiveConvertToStridedData(iface, &This->strided_streams, &fixup);
|
||||||
drawPrimitiveTraceDataLocations(&This->strided_streams);
|
drawPrimitiveTraceDataLocations(&This->strided_streams);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2049,7 +2044,7 @@ void drawPrimitive(IWineD3DDevice *iface,
|
||||||
numberOfVertices = calculatedNumberOfindices;
|
numberOfVertices = calculatedNumberOfindices;
|
||||||
|
|
||||||
drawPrimitiveDrawStrided(iface, useVertexShaderFunction, usePixelShaderFunction,
|
drawPrimitiveDrawStrided(iface, useVertexShaderFunction, usePixelShaderFunction,
|
||||||
&This->strided_streams, numberOfVertices, calculatedNumberOfindices, glPrimType,
|
&This->strided_streams, StartVertexIndex, numberOfVertices, calculatedNumberOfindices, glPrimType,
|
||||||
idxData, idxSize, minIndex, StartIdx, fixup);
|
idxData, idxSize, minIndex, StartIdx, fixup);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -204,7 +204,6 @@ inline BOOL WINAPI IWineD3DVertexBufferImpl_FindDecl(IWineD3DVertexBufferImpl *T
|
||||||
primitiveDeclarationConvertToStridedData((IWineD3DDevice *) device,
|
primitiveDeclarationConvertToStridedData((IWineD3DDevice *) device,
|
||||||
FALSE,
|
FALSE,
|
||||||
&strided,
|
&strided,
|
||||||
0,
|
|
||||||
&ret /* buffer contains fixed data, ignored here */);
|
&ret /* buffer contains fixed data, ignored here */);
|
||||||
This->Flags &= ~VBFLAG_LOAD;
|
This->Flags &= ~VBFLAG_LOAD;
|
||||||
|
|
||||||
|
|
|
@ -385,13 +385,12 @@ void drawPrimitive(IWineD3DDevice *iface,
|
||||||
int minIndex,
|
int minIndex,
|
||||||
WineDirect3DVertexStridedData *DrawPrimStrideData);
|
WineDirect3DVertexStridedData *DrawPrimStrideData);
|
||||||
|
|
||||||
void primitiveConvertToStridedData(IWineD3DDevice *iface, WineDirect3DVertexStridedData *strided, LONG BaseVertexIndex, BOOL *fixup);
|
void primitiveConvertToStridedData(IWineD3DDevice *iface, WineDirect3DVertexStridedData *strided, BOOL *fixup);
|
||||||
|
|
||||||
void primitiveDeclarationConvertToStridedData(
|
void primitiveDeclarationConvertToStridedData(
|
||||||
IWineD3DDevice *iface,
|
IWineD3DDevice *iface,
|
||||||
BOOL useVertexShaderFunction,
|
BOOL useVertexShaderFunction,
|
||||||
WineDirect3DVertexStridedData *strided,
|
WineDirect3DVertexStridedData *strided,
|
||||||
LONG BaseVertexIndex,
|
|
||||||
BOOL *fixup);
|
BOOL *fixup);
|
||||||
|
|
||||||
void primitiveConvertFVFtoOffset(DWORD thisFVF,
|
void primitiveConvertFVFtoOffset(DWORD thisFVF,
|
||||||
|
|
|
@ -397,6 +397,7 @@ DECLARE_INTERFACE_(IWineD3DDevice,IWineD3DBase)
|
||||||
STDMETHOD_(void, GetGammaRamp)(THIS_ UINT iSwapChain, WINED3DGAMMARAMP* pRamp) PURE;
|
STDMETHOD_(void, GetGammaRamp)(THIS_ UINT iSwapChain, WINED3DGAMMARAMP* pRamp) PURE;
|
||||||
STDMETHOD(SetIndices)(THIS_ struct IWineD3DIndexBuffer * pIndexData,UINT BaseVertexIndex) PURE;
|
STDMETHOD(SetIndices)(THIS_ struct IWineD3DIndexBuffer * pIndexData,UINT BaseVertexIndex) PURE;
|
||||||
STDMETHOD(GetIndices)(THIS_ struct IWineD3DIndexBuffer ** ppIndexData,UINT * pBaseVertexIndex) PURE;
|
STDMETHOD(GetIndices)(THIS_ struct IWineD3DIndexBuffer ** ppIndexData,UINT * pBaseVertexIndex) PURE;
|
||||||
|
STDMETHOD(SetBaseVertexIndex)(THIS_ UINT baseIndex);
|
||||||
STDMETHOD(SetLight)(THIS_ DWORD Index,CONST WINED3DLIGHT * pLight) PURE;
|
STDMETHOD(SetLight)(THIS_ DWORD Index,CONST WINED3DLIGHT * pLight) PURE;
|
||||||
STDMETHOD(GetLight)(THIS_ DWORD Index,WINED3DLIGHT * pLight) PURE;
|
STDMETHOD(GetLight)(THIS_ DWORD Index,WINED3DLIGHT * pLight) PURE;
|
||||||
STDMETHOD(SetLightEnable)(THIS_ DWORD Index,BOOL Enable) PURE;
|
STDMETHOD(SetLightEnable)(THIS_ DWORD Index,BOOL Enable) PURE;
|
||||||
|
@ -458,7 +459,7 @@ DECLARE_INTERFACE_(IWineD3DDevice,IWineD3DBase)
|
||||||
STDMETHOD(Present)(THIS_ CONST RECT * pSourceRect,CONST RECT * pDestRect,HWND hDestWindowOverride,CONST RGNDATA * pDirtyRegion) PURE;
|
STDMETHOD(Present)(THIS_ CONST RECT * pSourceRect,CONST RECT * pDestRect,HWND hDestWindowOverride,CONST RGNDATA * pDirtyRegion) PURE;
|
||||||
STDMETHOD(Clear)(THIS_ DWORD Count, CONST WINED3DRECT * pRects, DWORD Flags, WINED3DCOLOR Color, float Z, DWORD Stencil) PURE;
|
STDMETHOD(Clear)(THIS_ DWORD Count, CONST WINED3DRECT * pRects, DWORD Flags, WINED3DCOLOR Color, float Z, DWORD Stencil) PURE;
|
||||||
STDMETHOD(DrawPrimitive)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT StartVertex, UINT PrimitiveCount) PURE;
|
STDMETHOD(DrawPrimitive)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT StartVertex, UINT PrimitiveCount) PURE;
|
||||||
STDMETHOD(DrawIndexedPrimitive)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, INT baseVIdx, UINT minIndex, UINT NumVertices, UINT startIndex, UINT primCount) PURE;
|
STDMETHOD(DrawIndexedPrimitive)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT minIndex, UINT NumVertices, UINT startIndex, UINT primCount) PURE;
|
||||||
STDMETHOD(DrawPrimitiveUP)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, CONST void * pVertexStreamZeroData, UINT VertexStreamZeroStride) PURE;
|
STDMETHOD(DrawPrimitiveUP)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, CONST void * pVertexStreamZeroData, UINT VertexStreamZeroStride) PURE;
|
||||||
STDMETHOD(DrawIndexedPrimitiveUP)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT MinVertexIndex, UINT NumVertexIndices, UINT PrimitiveCount, CONST void * pIndexData, WINED3DFORMAT IndexDataFormat, CONST void * pVertexStreamZeroData, UINT VertexStreamZeroStride) PURE;
|
STDMETHOD(DrawIndexedPrimitiveUP)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT MinVertexIndex, UINT NumVertexIndices, UINT PrimitiveCount, CONST void * pIndexData, WINED3DFORMAT IndexDataFormat, CONST void * pVertexStreamZeroData, UINT VertexStreamZeroStride) PURE;
|
||||||
STDMETHOD(DrawPrimitiveStrided)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, WineDirect3DVertexStridedData *DrawPrimStrideData) PURE;
|
STDMETHOD(DrawPrimitiveStrided)(THIS_ WINED3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, WineDirect3DVertexStridedData *DrawPrimStrideData) PURE;
|
||||||
|
@ -533,6 +534,7 @@ DECLARE_INTERFACE_(IWineD3DDevice,IWineD3DBase)
|
||||||
#define IWineD3DDevice_GetGammaRamp(p,a,b) (p)->lpVtbl->GetGammaRamp(p,a,b)
|
#define IWineD3DDevice_GetGammaRamp(p,a,b) (p)->lpVtbl->GetGammaRamp(p,a,b)
|
||||||
#define IWineD3DDevice_SetIndices(p,a,b) (p)->lpVtbl->SetIndices(p,a,b)
|
#define IWineD3DDevice_SetIndices(p,a,b) (p)->lpVtbl->SetIndices(p,a,b)
|
||||||
#define IWineD3DDevice_GetIndices(p,a,b) (p)->lpVtbl->GetIndices(p,a,b)
|
#define IWineD3DDevice_GetIndices(p,a,b) (p)->lpVtbl->GetIndices(p,a,b)
|
||||||
|
#define IWineD3DDevice_SetBaseVertexIndex(p, a) (p)->lpVtbl->SetBaseVertexIndex(p, a)
|
||||||
#define IWineD3DDevice_SetLight(p,a,b) (p)->lpVtbl->SetLight(p,a,b)
|
#define IWineD3DDevice_SetLight(p,a,b) (p)->lpVtbl->SetLight(p,a,b)
|
||||||
#define IWineD3DDevice_GetLight(p,a,b) (p)->lpVtbl->GetLight(p,a,b)
|
#define IWineD3DDevice_GetLight(p,a,b) (p)->lpVtbl->GetLight(p,a,b)
|
||||||
#define IWineD3DDevice_SetLightEnable(p,a,b) (p)->lpVtbl->SetLightEnable(p,a,b)
|
#define IWineD3DDevice_SetLightEnable(p,a,b) (p)->lpVtbl->SetLightEnable(p,a,b)
|
||||||
|
@ -596,7 +598,7 @@ DECLARE_INTERFACE_(IWineD3DDevice,IWineD3DBase)
|
||||||
#define IWineD3DDevice_Present(p,a,b,c,d) (p)->lpVtbl->Present(p,a,b,c,d)
|
#define IWineD3DDevice_Present(p,a,b,c,d) (p)->lpVtbl->Present(p,a,b,c,d)
|
||||||
#define IWineD3DDevice_Clear(p,a,b,c,d,e,f) (p)->lpVtbl->Clear(p,a,b,c,d,e,f)
|
#define IWineD3DDevice_Clear(p,a,b,c,d,e,f) (p)->lpVtbl->Clear(p,a,b,c,d,e,f)
|
||||||
#define IWineD3DDevice_DrawPrimitive(p,a,b,c) (p)->lpVtbl->DrawPrimitive(p,a,b,c)
|
#define IWineD3DDevice_DrawPrimitive(p,a,b,c) (p)->lpVtbl->DrawPrimitive(p,a,b,c)
|
||||||
#define IWineD3DDevice_DrawIndexedPrimitive(p,a,b,c,d,e,f) (p)->lpVtbl->DrawIndexedPrimitive(p,a,b,c,d,e,f)
|
#define IWineD3DDevice_DrawIndexedPrimitive(p,a,b,c,d,e) (p)->lpVtbl->DrawIndexedPrimitive(p,a,b,c,d,e)
|
||||||
#define IWineD3DDevice_DrawPrimitiveUP(p,a,b,c,d) (p)->lpVtbl->DrawPrimitiveUP(p,a,b,c,d)
|
#define IWineD3DDevice_DrawPrimitiveUP(p,a,b,c,d) (p)->lpVtbl->DrawPrimitiveUP(p,a,b,c,d)
|
||||||
#define IWineD3DDevice_DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h)
|
#define IWineD3DDevice_DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h) (p)->lpVtbl->DrawIndexedPrimitiveUP(p,a,b,c,d,e,f,g,h)
|
||||||
#define IWineD3DDevice_DrawPrimitiveStrided(p,a,b,c) (p)->lpVtbl->DrawPrimitiveStrided(p,a,b,c)
|
#define IWineD3DDevice_DrawPrimitiveStrided(p,a,b,c) (p)->lpVtbl->DrawPrimitiveStrided(p,a,b,c)
|
||||||
|
|
Loading…
Reference in New Issue