Commit 68da568f authored by David Adam's avatar David Adam Committed by Alexandre Julliard

d3dx9_36: Implement ID3DXMesh_GetNumBytesPerVertex.

parent 23faba7e
...@@ -156,9 +156,9 @@ static DWORD WINAPI ID3DXMeshImpl_GetNumBytesPerVertex(ID3DXMesh *iface) ...@@ -156,9 +156,9 @@ static DWORD WINAPI ID3DXMeshImpl_GetNumBytesPerVertex(ID3DXMesh *iface)
{ {
ID3DXMeshImpl *This = impl_from_ID3DXMesh(iface); ID3DXMeshImpl *This = impl_from_ID3DXMesh(iface);
FIXME("(%p): stub\n", This); TRACE("iface (%p)\n", This);
return 0; /* arbitrary since we cannot return E_NOTIMPL */ return D3DXGetFVFVertexSize(This->fvf);
} }
static DWORD WINAPI ID3DXMeshImpl_GetOptions(ID3DXMesh *iface) static DWORD WINAPI ID3DXMeshImpl_GetOptions(ID3DXMesh *iface)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment