From 930f7ed3c6e66b294495cbd918c2a8e8cd5073b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rico=20Sch=C3=BCller?= Date: Thu, 14 Oct 2010 21:04:46 +0200 Subject: [PATCH] d3d10: Forward D3D10GetOutputSignatureBlob() to d3dcompiler. --- dlls/d3d10/d3d10.spec | 2 +- include/d3d10shader.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/d3d10/d3d10.spec b/dlls/d3d10/d3d10.spec index 24ab4be1522..bbdbd3001fa 100644 --- a/dlls/d3d10/d3d10.spec +++ b/dlls/d3d10/d3d10.spec @@ -11,7 +11,7 @@ @ stdcall D3D10GetGeometryShaderProfile(ptr) @ stub D3D10GetInputAndOutputSignatureBlob @ stdcall D3D10GetInputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetInputSignatureBlob -@ stub D3D10GetOutputSignatureBlob +@ stdcall D3D10GetOutputSignatureBlob(ptr long ptr) d3dcompiler_43.D3DGetOutputSignatureBlob @ stdcall D3D10GetPixelShaderProfile(ptr) @ stub D3D10GetShaderDebugInfo @ stub D3D10GetVersion diff --git a/include/d3d10shader.h b/include/d3d10shader.h index b70b8ec6edc..9407821e31e 100644 --- a/include/d3d10shader.h +++ b/include/d3d10shader.h @@ -291,5 +291,6 @@ LPCSTR WINAPI D3D10GetPixelShaderProfile(ID3D10Device *device); HRESULT WINAPI D3D10ReflectShader(const void *data, SIZE_T data_size, ID3D10ShaderReflection **reflector); HRESULT WINAPI D3D10GetInputSignatureBlob(const void *data, SIZE_T data_size, ID3D10Blob **blob); +HRESULT WINAPI D3D10GetOutputSignatureBlob(const void *data, SIZE_T data_size, ID3D10Blob **blob); #endif /* __WINE_D3D10SHADER_H */ -- 2.11.4.GIT