[v2 5/5] d3dx9: Loop through input parameters in is_const_tab_input_dirty().

Paul Gofman gofmanp at gmail.com
Tue May 16 11:49:21 CDT 2017


Signed-off-by: Paul Gofman <gofmanp at gmail.com>
---
v2:
    - no changes.
---
 dlls/d3dx9_36/preshader.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/d3dx9_36/preshader.c b/dlls/d3dx9_36/preshader.c
index e29ede0..d020b1c 100644
--- a/dlls/d3dx9_36/preshader.c
+++ b/dlls/d3dx9_36/preshader.c
@@ -1319,9 +1319,10 @@ static BOOL is_const_tab_input_dirty(struct d3dx_const_tab *ctab, ULONG64 update
 
     if (update_version == ~0)
         update_version = ctab->update_version;
-    for (i = 0; i < ctab->const_set_count; ++i)
+    for (i = 0; i < ctab->input_count; ++i)
     {
-        if (is_param_dirty(ctab->const_set[i].param, update_version))
+        if (ctab->inputs_param[i]
+                && is_param_dirty(ctab->inputs_param[i], update_version))
             return TRUE;
     }
     return FALSE;
-- 
2.9.3




More information about the wine-patches mailing list