d3dx9: Implement ID3DXSprite_GetDevice.
This commit is contained in:
parent
67dadeb7c8
commit
5d4e081026
|
@ -79,8 +79,13 @@ static ULONG WINAPI ID3DXSpriteImpl_Release(LPD3DXSPRITE iface)
|
||||||
static HRESULT WINAPI ID3DXSpriteImpl_GetDevice(LPD3DXSPRITE iface, LPDIRECT3DDEVICE9 *device)
|
static HRESULT WINAPI ID3DXSpriteImpl_GetDevice(LPD3DXSPRITE iface, LPDIRECT3DDEVICE9 *device)
|
||||||
{
|
{
|
||||||
ID3DXSpriteImpl *This=(ID3DXSpriteImpl*)iface;
|
ID3DXSpriteImpl *This=(ID3DXSpriteImpl*)iface;
|
||||||
FIXME("(%p): stub\n", This);
|
TRACE("(%p): relay\n", This);
|
||||||
return E_NOTIMPL;
|
|
||||||
|
if(device==NULL) return D3DERR_INVALIDCALL;
|
||||||
|
*device=This->device;
|
||||||
|
IDirect3DDevice9_AddRef(This->device);
|
||||||
|
|
||||||
|
return D3D_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI ID3DXSpriteImpl_GetTransform(LPD3DXSPRITE iface, D3DXMATRIX *transform)
|
static HRESULT WINAPI ID3DXSpriteImpl_GetTransform(LPD3DXSPRITE iface, D3DXMATRIX *transform)
|
||||||
|
|
Loading…
Reference in New Issue