[PATCH 1/8] d3dx9: Merge the d3dx_effect_GetAnnotation() helper

Michael Stefaniuc mstefani at winehq.org
Mon Mar 4 16:15:58 CST 2019


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/d3dx9_36/effect.c | 33 +++++++++++++--------------------
 1 file changed, 13 insertions(+), 20 deletions(-)

diff --git a/dlls/d3dx9_36/effect.c b/dlls/d3dx9_36/effect.c
index dda460d17c..ea3563128f 100644
--- a/dlls/d3dx9_36/effect.c
+++ b/dlls/d3dx9_36/effect.c
@@ -1286,25 +1286,6 @@ static UINT get_annotation_from_object(struct d3dx9_base_effect *base,
     }
 }
 
-static D3DXHANDLE d3dx9_base_effect_get_annotation(struct d3dx9_base_effect *base,
-        D3DXHANDLE object, UINT index)
-{
-    struct d3dx_parameter *annotations = NULL;
-    UINT annotation_count = 0;
-
-    annotation_count = get_annotation_from_object(base, object, &annotations);
-
-    if (index < annotation_count)
-    {
-        TRACE("Returning parameter %p\n", &annotations[index]);
-        return get_parameter_handle(&annotations[index]);
-    }
-
-    WARN("Annotation not found.\n");
-
-    return NULL;
-}
-
 static D3DXHANDLE d3dx9_base_effect_get_annotation_by_name(struct d3dx9_base_effect *base,
         D3DXHANDLE object, const char *name)
 {
@@ -3513,10 +3494,22 @@ static D3DXHANDLE WINAPI d3dx_effect_GetFunctionByName(ID3DXEffect *iface, const
 static D3DXHANDLE WINAPI d3dx_effect_GetAnnotation(ID3DXEffect *iface, D3DXHANDLE object, UINT index)
 {
     struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
+    struct d3dx_parameter *annotations = NULL;
+    unsigned int annotation_count;
 
     TRACE("iface %p, object %p, index %u.\n", iface, object, index);
 
-    return d3dx9_base_effect_get_annotation(&effect->base_effect, object, index);
+    annotation_count = get_annotation_from_object(&effect->base_effect, object, &annotations);
+
+    if (index < annotation_count)
+    {
+        TRACE("Returning parameter %p\n", &annotations[index]);
+        return get_parameter_handle(&annotations[index]);
+    }
+
+    WARN("Annotation not found.\n");
+
+    return NULL;
 }
 
 static D3DXHANDLE WINAPI d3dx_effect_GetAnnotationByName(ID3DXEffect *iface, D3DXHANDLE object,
-- 
2.20.1




More information about the wine-devel mailing list