Commit bdc5c321 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

d3dx9_36: Add stub for DisassembleEffect.

parent a73c6970
......@@ -119,7 +119,7 @@
@ stub D3DXCreateVolumeTextureFromResourceW(ptr long ptr ptr)
@ stdcall D3DXDebugMute(long)
@ stdcall D3DXDeclaratorFromFVF(long ptr)
@ stub D3DXDisassembleEffect(ptr long ptr)
@ stdcall D3DXDisassembleEffect(ptr long ptr)
@ stub D3DXDisassembleShader(ptr long ptr ptr)
@ stdcall D3DXFileCreate(ptr)
@ stdcall D3DXFillCubeTexture(ptr ptr ptr)
......
......@@ -6196,3 +6196,10 @@ HRESULT WINAPI D3DXCreateEffectCompilerFromResourceW(HMODULE srcmodule, const WC
return D3DXERR_INVALIDDATA;
}
HRESULT WINAPI D3DXDisassembleEffect(ID3DXEffect *effect, BOOL enable_color_code, ID3DXBuffer **disassembly)
{
FIXME("(%p, %u, %p): stub\n", effect, enable_color_code, disassembly);
return D3DXERR_INVALIDDATA;
}
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