mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WINESYNC] d3dx9: Merge the d3dx_effect_GetPassByName() helper.
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 730e44ebe224c1b70e9f6eaf6a9aaeb8bc38a20b by Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
862292231b
commit
43d0a88291
2 changed files with 21 additions and 28 deletions
|
@ -1208,32 +1208,6 @@ static D3DXHANDLE d3dx9_base_effect_get_technique_by_name(struct d3dx9_base_effe
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static D3DXHANDLE d3dx9_base_effect_get_pass_by_name(struct d3dx9_base_effect *base,
|
||||
D3DXHANDLE technique, const char *name)
|
||||
{
|
||||
struct d3dx_technique *tech = get_valid_technique(base, technique);
|
||||
|
||||
if (tech && name)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < tech->pass_count; ++i)
|
||||
{
|
||||
struct d3dx_pass *pass = &tech->passes[i];
|
||||
|
||||
if (!strcmp(pass->name, name))
|
||||
{
|
||||
TRACE("Returning pass %p\n", pass);
|
||||
return get_pass_handle(pass);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WARN("Pass not found.\n");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static unsigned int get_annotation_from_object(struct d3dx_effect *effect, D3DXHANDLE object,
|
||||
struct d3dx_parameter **annotations)
|
||||
{
|
||||
|
@ -3442,10 +3416,29 @@ static D3DXHANDLE WINAPI d3dx_effect_GetPass(ID3DXEffect *iface, D3DXHANDLE tech
|
|||
static D3DXHANDLE WINAPI d3dx_effect_GetPassByName(ID3DXEffect *iface, D3DXHANDLE technique, const char *name)
|
||||
{
|
||||
struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
|
||||
struct d3dx_technique *tech = get_valid_technique(&effect->base_effect, technique);
|
||||
|
||||
TRACE("iface %p, technique %p, name %s.\n", iface, technique, debugstr_a(name));
|
||||
|
||||
return d3dx9_base_effect_get_pass_by_name(&effect->base_effect, technique, name);
|
||||
if (tech && name)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < tech->pass_count; ++i)
|
||||
{
|
||||
struct d3dx_pass *pass = &tech->passes[i];
|
||||
|
||||
if (!strcmp(pass->name, name))
|
||||
{
|
||||
TRACE("Returning pass %p\n", pass);
|
||||
return get_pass_handle(pass);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WARN("Pass not found.\n");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static D3DXHANDLE WINAPI d3dx_effect_GetFunction(ID3DXEffect *iface, UINT index)
|
||||
|
|
|
@ -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: e419ac91ba5bd295b596f334951657b54dba3e99}
|
||||
tags: {wine: 730e44ebe224c1b70e9f6eaf6a9aaeb8bc38a20b}
|
||||
|
|
Loading…
Reference in a new issue