Module: wine Branch: master Commit: 230f3e636698ecf69291e6e4df14d4be84d929e3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=230f3e636698ecf69291e6e4df...
Author: Jérôme Gardou jerome.gardou@gmail.com Date: Thu Nov 27 07:40:42 2008 +0100
d3dx8: Implement D3DXMatrixStack_ScaleLocal.
---
dlls/d3dx8/math.c | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/dlls/d3dx8/math.c b/dlls/d3dx8/math.c index 0fc178e..687927f 100644 --- a/dlls/d3dx8/math.c +++ b/dlls/d3dx8/math.c @@ -1,5 +1,6 @@ /* * Copyright 2007 David Adam + * Copyright 2008 Jérôme Gardou * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -831,9 +832,15 @@ static HRESULT WINAPI ID3DXMatrixStackImpl_Scale(ID3DXMatrixStack *iface, FLOAT
static HRESULT WINAPI ID3DXMatrixStackImpl_ScaleLocal(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); + + D3DXMatrixScaling(&temp, x, y, z); + D3DXMatrixMultiply(&This->stack[This->current], &temp, &This->stack[This->current]); + + return D3D_OK; }
static HRESULT WINAPI ID3DXMatrixStackImpl_Translate(ID3DXMatrixStack *iface, FLOAT x, FLOAT y, FLOAT z)