Module: wine Branch: master Commit: 7858a6f8e695023e423af5ae4331fdf7c39702cd URL: http://source.winehq.org/git/wine.git/?a=commit;h=7858a6f8e695023e423af5ae43...
Author: Rico Schüller kgbricola@web.de Date: Thu May 5 11:30:30 2011 +0200
d3dx9: Implement ID3DXBaseEffect::GetAnnotation().
---
dlls/d3dx9_36/effect.c | 37 ++++++++++++++++++++++++++++++++++++- 1 files changed, 36 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dx9_36/effect.c b/dlls/d3dx9_36/effect.c index 27f22b2..e2b6710 100644 --- a/dlls/d3dx9_36/effect.c +++ b/dlls/d3dx9_36/effect.c @@ -1017,8 +1017,43 @@ static D3DXHANDLE WINAPI ID3DXBaseEffectImpl_GetFunctionByName(ID3DXBaseEffect * static D3DXHANDLE WINAPI ID3DXBaseEffectImpl_GetAnnotation(ID3DXBaseEffect *iface, D3DXHANDLE object, UINT index) { struct ID3DXBaseEffectImpl *This = impl_from_ID3DXBaseEffect(iface); + struct d3dx_parameter *param = is_valid_parameter(This, object); + struct d3dx_pass *pass = is_valid_pass(This, object); + struct d3dx_technique *technique = is_valid_technique(This, object); + UINT annotation_count = 0; + D3DXHANDLE *annotation_handles = NULL; + + FIXME("iface %p, object %p, index %u partial stub\n", This, object, index); + + if (pass) + { + annotation_count = pass->annotation_count; + annotation_handles = pass->annotation_handles; + } + else if (technique) + { + annotation_count = technique->annotation_count; + annotation_handles = technique->annotation_handles; + } + else + { + if (!param) param = get_parameter_by_name(This, NULL, object);
- FIXME("iface %p, object %p, index %u stub\n", This, object, index); + if (param) + { + annotation_count = param->annotation_count; + annotation_handles = param->annotation_handles; + } + } + /* Todo: add funcs */ + + if (index < annotation_count) + { + TRACE("Returning parameter %p\n", annotation_handles[index]); + return annotation_handles[index]; + } + + WARN("Invalid argument specified\n");
return NULL; }