Rico Schüller : d3dcompiler: Implement ID3D11ShaderReflection::GetInputParameterDesc().

Alexandre Julliard julliard at winehq.org
Wed Dec 22 10:57:40 CST 2010


Module: wine
Branch: master
Commit: 767e5705a28730abfd199f7645a230dee52be4ff
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=767e5705a28730abfd199f7645a230dee52be4ff

Author: Rico Schüller <kgbricola at web.de>
Date:   Wed Dec 22 12:15:57 2010 +0100

d3dcompiler: Implement ID3D11ShaderReflection::GetInputParameterDesc().

---

 dlls/d3dcompiler_43/reflection.c |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/dlls/d3dcompiler_43/reflection.c b/dlls/d3dcompiler_43/reflection.c
index 89f868b..a7aef62 100644
--- a/dlls/d3dcompiler_43/reflection.c
+++ b/dlls/d3dcompiler_43/reflection.c
@@ -143,9 +143,19 @@ static HRESULT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetResourceBindin
 static HRESULT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetInputParameterDesc(
         ID3D11ShaderReflection *iface, UINT index, D3D11_SIGNATURE_PARAMETER_DESC *desc)
 {
-    FIXME("iface %p, index %u, desc %p stub!\n", iface, index, desc);
+    struct d3dcompiler_shader_reflection *This = impl_from_ID3D11ShaderReflection(iface);
 
-    return E_NOTIMPL;
+    TRACE("iface %p, index %u, desc %p\n", iface, index, desc);
+
+    if (!desc || !This->isgn || index >= This->isgn->element_count)
+    {
+        WARN("Invalid argument specified\n");
+        return E_INVALIDARG;
+    }
+
+    *desc = This->isgn->elements[index];
+
+    return S_OK;
 }
 
 static HRESULT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetOutputParameterDesc(




More information about the wine-cvs mailing list