Commit 47351a60 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

d3dx9: Don't mark annotation variables as dirty.

This fixes a crash when trying to set their value. Signed-off-by: 's avatarZebediah Figura <zfigura@codeweavers.com> Signed-off-by: 's avatarMatteo Bruni <mbruni@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b3b6d8c9
......@@ -1313,10 +1313,15 @@ static void *record_parameter(struct d3dx_effect *effect, struct d3dx_parameter
static void set_dirty(struct d3dx_parameter *param)
{
struct d3dx_shared_data *shared_data;
struct d3dx_top_level_parameter *top_param = param->top_level_param;
ULONG64 new_update_version = next_update_version(top_param->version_counter);
struct d3dx_shared_data *shared_data;
ULONG64 new_update_version;
/* This is true for annotations. */
if (!top_param)
return;
new_update_version = next_update_version(top_param->version_counter);
if ((shared_data = top_param->shared_data))
shared_data->update_version = new_update_version;
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment