d3dcompiler: Implement ID3D11ShaderReflection::GetConversionInstructionCount().
This commit is contained in:
parent
ff038cbcbe
commit
5ad0c856b6
|
@ -169,9 +169,11 @@ static UINT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetMovcInstructionCo
|
|||
static UINT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetConversionInstructionCount(
|
||||
ID3D11ShaderReflection *iface)
|
||||
{
|
||||
FIXME("iface %p stub!\n", iface);
|
||||
struct d3dcompiler_shader_reflection *This = impl_from_ID3D11ShaderReflection(iface);
|
||||
|
||||
return 0;
|
||||
TRACE("iface %p\n", iface);
|
||||
|
||||
return This->conversion_instruction_count;
|
||||
}
|
||||
|
||||
static UINT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetBitwiseInstructionCount(
|
||||
|
|
Loading…
Reference in New Issue