mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[WINESYNC] d3dx9: Merge the d3dx_effect_SetBool() helper.
Signed-off-by: Michael Stefaniuc <[email protected]> Signed-off-by: Matteo Bruni <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id b4bc9ea7b711c03b93d15bb2ba04dfbbb9d70f72 by Michael Stefaniuc <[email protected]>
This commit is contained in:
@@ -1349,22 +1349,6 @@ static HRESULT d3dx9_base_effect_get_value(struct d3dx9_base_effect *base,
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
static HRESULT d3dx9_base_effect_set_bool(struct d3dx9_base_effect *base, D3DXHANDLE parameter, BOOL b)
|
||||
{
|
||||
struct d3dx_parameter *param = get_valid_parameter(base, parameter);
|
||||
|
||||
if (param && !param->element_count && param->rows == 1 && param->columns == 1)
|
||||
{
|
||||
set_number(param->data, param->type, &b, D3DXPT_BOOL);
|
||||
set_dirty(param);
|
||||
return D3D_OK;
|
||||
}
|
||||
|
||||
WARN("Parameter not found.\n");
|
||||
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
static HRESULT d3dx9_base_effect_set_bool_array(struct d3dx9_base_effect *base,
|
||||
D3DXHANDLE parameter, const BOOL *b, UINT count)
|
||||
{
|
||||
@@ -3465,10 +3449,20 @@ static HRESULT WINAPI d3dx_effect_GetValue(ID3DXEffect *iface, D3DXHANDLE parame
|
||||
static HRESULT WINAPI d3dx_effect_SetBool(ID3DXEffect *iface, D3DXHANDLE parameter, BOOL b)
|
||||
{
|
||||
struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
|
||||
struct d3dx_parameter *param = get_valid_parameter(&effect->base_effect, parameter);
|
||||
|
||||
TRACE("iface %p, parameter %p, b %#x.\n", iface, parameter, b);
|
||||
|
||||
return d3dx9_base_effect_set_bool(&effect->base_effect, parameter, b);
|
||||
if (param && !param->element_count && param->rows == 1 && param->columns == 1)
|
||||
{
|
||||
set_number(param->data, param->type, &b, D3DXPT_BOOL);
|
||||
set_dirty(param);
|
||||
return D3D_OK;
|
||||
}
|
||||
|
||||
WARN("Parameter not found.\n");
|
||||
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI d3dx_effect_GetBool(ID3DXEffect *iface, D3DXHANDLE parameter, BOOL *b)
|
||||
|
||||
@@ -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: ab7756619c1b16c761618a68d1b6a06ad437cbe8}
|
||||
tags: {wine: b4bc9ea7b711c03b93d15bb2ba04dfbbb9d70f72}
|
||||
|
||||
Reference in New Issue
Block a user