mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:13:06 +00:00
[WINESYNC] d3dx9: Merge the d3dx_effect_GetPixelShader() 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 7ce336969ca4f7adba33c45f5f746a8f656348cc by Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
2a0486d854
commit
6dec261847
2 changed files with 14 additions and 21 deletions
|
@ -1586,24 +1586,6 @@ static HRESULT d3dx9_base_effect_get_texture(struct d3dx9_base_effect *base,
|
||||||
return D3DERR_INVALIDCALL;
|
return D3DERR_INVALIDCALL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT d3dx9_base_effect_get_pixel_shader(struct d3dx9_base_effect *base,
|
|
||||||
D3DXHANDLE parameter, struct IDirect3DPixelShader9 **shader)
|
|
||||||
{
|
|
||||||
struct d3dx_parameter *param = get_valid_parameter(base, parameter);
|
|
||||||
|
|
||||||
if (shader && param && !param->element_count && param->type == D3DXPT_PIXELSHADER)
|
|
||||||
{
|
|
||||||
if ((*shader = *(struct IDirect3DPixelShader9 **)param->data))
|
|
||||||
IDirect3DPixelShader9_AddRef(*shader);
|
|
||||||
TRACE("Returning %p.\n", *shader);
|
|
||||||
return D3D_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
WARN("Parameter not found.\n");
|
|
||||||
|
|
||||||
return D3DERR_INVALIDCALL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static HRESULT d3dx9_base_effect_get_vertex_shader(struct d3dx9_base_effect *base,
|
static HRESULT d3dx9_base_effect_get_vertex_shader(struct d3dx9_base_effect *base,
|
||||||
D3DXHANDLE parameter, struct IDirect3DVertexShader9 **shader)
|
D3DXHANDLE parameter, struct IDirect3DVertexShader9 **shader)
|
||||||
{
|
{
|
||||||
|
@ -3610,13 +3592,24 @@ static HRESULT WINAPI d3dx_effect_GetTexture(struct ID3DXEffect *iface, D3DXHAND
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI d3dx_effect_GetPixelShader(ID3DXEffect *iface, D3DXHANDLE parameter,
|
static HRESULT WINAPI d3dx_effect_GetPixelShader(ID3DXEffect *iface, D3DXHANDLE parameter,
|
||||||
struct IDirect3DPixelShader9 **shader)
|
IDirect3DPixelShader9 **shader)
|
||||||
{
|
{
|
||||||
struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
|
struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
|
||||||
|
struct d3dx_parameter *param = get_valid_parameter(&effect->base_effect, parameter);
|
||||||
|
|
||||||
TRACE("iface %p, parameter %p, shader %p.\n", iface, parameter, shader);
|
TRACE("iface %p, parameter %p, shader %p.\n", iface, parameter, shader);
|
||||||
|
|
||||||
return d3dx9_base_effect_get_pixel_shader(&effect->base_effect, parameter, shader);
|
if (shader && param && !param->element_count && param->type == D3DXPT_PIXELSHADER)
|
||||||
|
{
|
||||||
|
if ((*shader = *(IDirect3DPixelShader9 **)param->data))
|
||||||
|
IDirect3DPixelShader9_AddRef(*shader);
|
||||||
|
TRACE("Returning %p.\n", *shader);
|
||||||
|
return D3D_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
WARN("Parameter not found.\n");
|
||||||
|
|
||||||
|
return D3DERR_INVALIDCALL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI d3dx_effect_GetVertexShader(struct ID3DXEffect *iface, D3DXHANDLE parameter,
|
static HRESULT WINAPI d3dx_effect_GetVertexShader(struct ID3DXEffect *iface, D3DXHANDLE parameter,
|
||||||
|
|
|
@ -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/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/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}
|
include/d3dx9tex.h: sdk/include/dxsdk/d3dx9tex.h, include/d3dx9xof.h: sdk/include/dxsdk/d3dx9xof.h}
|
||||||
tags: {wine: 262238d46752700c2041cb9548724c66bd017eca}
|
tags: {wine: 7ce336969ca4f7adba33c45f5f746a8f656348cc}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue