Commit 549f8796 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

d3drm: Texture callback cannot be passed directly. Texture object argument is…

d3drm: Texture callback cannot be passed directly. Texture object argument is different so disable it for now.
parent c6ce077f
......@@ -440,8 +440,11 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder2Impl_Load(IDirect3DRMMeshBuilder2*
TRACE("(%p)->(%p,%p,%x,%p,%p)\n", This, filename, name, loadflags, cb, arg);
if (cb)
FIXME("Texture callback is not yet supported\n");
return IDirect3DRMMeshBuilder3_Load(&This->IDirect3DRMMeshBuilder3_iface, filename, name,
loadflags, (D3DRMLOADTEXTURE3CALLBACK)cb, arg);
loadflags, NULL, arg);
}
static HRESULT WINAPI IDirect3DRMMeshBuilder2Impl_Save(IDirect3DRMMeshBuilder2* 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