mirror of
https://github.com/reactos/reactos.git
synced 2024-11-24 12:03:31 +08:00
[WINESYNC] d3dx9: Move full_name_tmp out of struct d3dx9_base_effect.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 3779ff07b048bfdaf67674db89aedaa1e4b1e810 by Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
826d5b5fcb
commit
2493cdf262
@ -166,7 +166,6 @@ struct d3dx9_base_effect
|
||||
|
||||
ULONG64 version_counter;
|
||||
|
||||
char *full_name_tmp;
|
||||
unsigned int full_name_tmp_size;
|
||||
};
|
||||
|
||||
@ -180,6 +179,7 @@ struct d3dx_effect
|
||||
unsigned int object_count;
|
||||
struct d3dx_object *objects;
|
||||
struct wine_rb_tree param_tree;
|
||||
char *full_name_tmp;
|
||||
|
||||
struct ID3DXEffectStateManager *manager;
|
||||
struct IDirect3DDevice9 *device;
|
||||
@ -694,7 +694,7 @@ static void d3dx9_base_effect_cleanup(struct d3dx_effect *effect)
|
||||
|
||||
TRACE("base %p.\n", base);
|
||||
|
||||
heap_free(base->full_name_tmp);
|
||||
heap_free(effect->full_name_tmp);
|
||||
|
||||
if (base->parameters)
|
||||
{
|
||||
@ -934,17 +934,17 @@ struct d3dx_parameter *get_parameter_by_name(struct d3dx9_base_effect *base,
|
||||
full_name_size = name_len + param_name_len + 2;
|
||||
if (base->full_name_tmp_size < full_name_size)
|
||||
{
|
||||
if (!(full_name = heap_realloc(base->full_name_tmp, full_name_size)))
|
||||
if (!(full_name = heap_realloc(effect->full_name_tmp, full_name_size)))
|
||||
{
|
||||
ERR("Out of memory.\n");
|
||||
return NULL;
|
||||
}
|
||||
base->full_name_tmp = full_name;
|
||||
effect->full_name_tmp = full_name;
|
||||
base->full_name_tmp_size = full_name_size;
|
||||
}
|
||||
else
|
||||
{
|
||||
full_name = base->full_name_tmp;
|
||||
full_name = effect->full_name_tmp;
|
||||
}
|
||||
memcpy(full_name, parameter->full_name, param_name_len);
|
||||
full_name[param_name_len] = '.';
|
||||
|
@ -15,4 +15,4 @@ files: {include/d3dx9.h: sdk/include/dxsdk/d3dx9.h, include/d3dx9anim.h: sdk/inc
|
||||
include/d3dx9mesh.h: sdk/include/dxsdk/d3dx9mesh.h, include/d3dx9of.h: sdk/include/dxsdk/d3dx9of.h,
|
||||
include/d3dx9shader.h: sdk/include/dxsdk/d3dx9shader.h, include/d3dx9shape.h: sdk/include/dxsdk/d3dx9shape.h,
|
||||
include/d3dx9tex.h: sdk/include/dxsdk/d3dx9tex.h, include/d3dx9xof.h: sdk/include/dxsdk/d3dx9xof.h}
|
||||
tags: {wine: adc1b5a8bc6bcce427e231485015da43d24ca5cb}
|
||||
tags: {wine: 3779ff07b048bfdaf67674db89aedaa1e4b1e810}
|
||||
|
Loading…
Reference in New Issue
Block a user