mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[WINESYNC] d3dx9: Merge the d3dx_effect_GetBoolArray() 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 ab7756619c1b16c761618a68d1b6a06ad437cbe8 by Michael Stefaniuc <[email protected]>
This commit is contained in:
@@ -1404,30 +1404,6 @@ static HRESULT d3dx9_base_effect_set_bool_array(struct d3dx9_base_effect *base,
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
static HRESULT d3dx9_base_effect_get_bool_array(struct d3dx9_base_effect *base,
|
||||
D3DXHANDLE parameter, BOOL *b, UINT count)
|
||||
{
|
||||
struct d3dx_parameter *param = get_valid_parameter(base, parameter);
|
||||
|
||||
if (b && param && (param->class == D3DXPC_SCALAR
|
||||
|| param->class == D3DXPC_VECTOR
|
||||
|| param->class == D3DXPC_MATRIX_ROWS
|
||||
|| param->class == D3DXPC_MATRIX_COLUMNS))
|
||||
{
|
||||
UINT i, size = min(count, param->bytes / sizeof(DWORD));
|
||||
|
||||
for (i = 0; i < size; ++i)
|
||||
{
|
||||
set_number(&b[i], D3DXPT_BOOL, (DWORD *)param->data + i, param->type);
|
||||
}
|
||||
return D3D_OK;
|
||||
}
|
||||
|
||||
WARN("Parameter not found.\n");
|
||||
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
static HRESULT d3dx9_base_effect_set_int(struct d3dx9_base_effect *base, D3DXHANDLE parameter, INT n)
|
||||
{
|
||||
struct d3dx_parameter *param = get_valid_parameter(base, parameter);
|
||||
@@ -3526,10 +3502,27 @@ static HRESULT WINAPI d3dx_effect_SetBoolArray(ID3DXEffect *iface, D3DXHANDLE pa
|
||||
static HRESULT WINAPI d3dx_effect_GetBoolArray(ID3DXEffect *iface, D3DXHANDLE parameter, BOOL *b, UINT count)
|
||||
{
|
||||
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 %p, count %u.\n", iface, parameter, b, count);
|
||||
|
||||
return d3dx9_base_effect_get_bool_array(&effect->base_effect, parameter, b, count);
|
||||
if (b && param && (param->class == D3DXPC_SCALAR
|
||||
|| param->class == D3DXPC_VECTOR
|
||||
|| param->class == D3DXPC_MATRIX_ROWS
|
||||
|| param->class == D3DXPC_MATRIX_COLUMNS))
|
||||
{
|
||||
unsigned int i, size = min(count, param->bytes / sizeof(DWORD));
|
||||
|
||||
for (i = 0; i < size; ++i)
|
||||
{
|
||||
set_number(&b[i], D3DXPT_BOOL, (DWORD *)param->data + i, param->type);
|
||||
}
|
||||
return D3D_OK;
|
||||
}
|
||||
|
||||
WARN("Parameter not found.\n");
|
||||
|
||||
return D3DERR_INVALIDCALL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI d3dx_effect_SetInt(ID3DXEffect *iface, D3DXHANDLE parameter, INT n)
|
||||
|
||||
@@ -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: cca43ca090ccb27c5e3d3564dbe69a424f0c9872}
|
||||
tags: {wine: ab7756619c1b16c761618a68d1b6a06ad437cbe8}
|
||||
|
||||
Reference in New Issue
Block a user