mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[WINESYNC] d3dx9: Pass a struct d3dx_effect to d3dx9_create_object().
Signed-off-by: Michael Stefaniuc <[email protected]> Signed-off-by: Matteo Bruni <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id 92d2f6d99429df4b5f132eca2fa8a2c1eae4a6d0 by Michael Stefaniuc <[email protected]>
This commit is contained in:
@@ -5678,10 +5678,10 @@ err_out:
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT d3dx9_create_object(struct d3dx9_base_effect *base, struct d3dx_object *object)
|
||||
static HRESULT d3dx9_create_object(struct d3dx_effect *effect, struct d3dx_object *object)
|
||||
{
|
||||
struct d3dx_parameter *param = object->param;
|
||||
struct IDirect3DDevice9 *device = base->effect->device;
|
||||
IDirect3DDevice9 *device = effect->device;
|
||||
HRESULT hr;
|
||||
|
||||
if (*(char **)param->data)
|
||||
@@ -5884,7 +5884,7 @@ static HRESULT d3dx_parse_resource(struct d3dx_effect *effect, const char *data,
|
||||
|
||||
if (object->data)
|
||||
{
|
||||
if (FAILED(hr = d3dx9_create_object(base, object)))
|
||||
if (FAILED(hr = d3dx9_create_object(effect, object)))
|
||||
return hr;
|
||||
if (FAILED(hr = d3dx_create_param_eval(effect, object->data, object->size, param->type,
|
||||
¶m->param_eval, get_version_counter_ptr(effect),
|
||||
@@ -6061,7 +6061,7 @@ static HRESULT d3dx_parse_effect(struct d3dx_effect *effect, const char *data, U
|
||||
|
||||
if (effect->objects[id].data)
|
||||
{
|
||||
if (FAILED(hr = d3dx9_create_object(base, &effect->objects[id])))
|
||||
if (FAILED(hr = d3dx9_create_object(effect, &effect->objects[id])))
|
||||
goto err_out;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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: de59a1297111dfd0be93dccaa2db31865c61b79a}
|
||||
tags: {wine: 92d2f6d99429df4b5f132eca2fa8a2c1eae4a6d0}
|
||||
|
||||
Reference in New Issue
Block a user