mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
d3dx8: Implement D3DXMatrixStack_RotateYawPitchRollLocal.
This commit is contained in:
parent
39e0dc79ef
commit
6d27cdc17a
@ -805,9 +805,15 @@ static HRESULT WINAPI ID3DXMatrixStackImpl_RotateYawPitchRoll(ID3DXMatrixStack *
|
||||
|
||||
static HRESULT WINAPI ID3DXMatrixStackImpl_RotateYawPitchRollLocal(ID3DXMatrixStack *iface, FLOAT x, FLOAT y, FLOAT z)
|
||||
{
|
||||
D3DXMATRIX temp;
|
||||
ID3DXMatrixStackImpl *This = (ID3DXMatrixStackImpl *)iface;
|
||||
FIXME("(%p) : stub\n",This);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("iface %p\n", iface);
|
||||
|
||||
D3DXMatrixRotationYawPitchRoll(&temp, x, y, z);
|
||||
D3DXMatrixMultiply(&This->stack[This->current], &temp, &This->stack[This->current]);
|
||||
|
||||
return D3D_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI ID3DXMatrixStackImpl_Scale(ID3DXMatrixStack *iface, FLOAT x, FLOAT y, FLOAT z)
|
||||
|
Loading…
Reference in New Issue
Block a user