d3dx9_36/tests: Initialize some test values.

oldstable
Stefan Dösinger 2014-03-31 11:44:54 +02:00 committed by Alexandre Julliard
parent 807998ed4c
commit ed3b1037f9
1 changed files with 3 additions and 3 deletions

View File

@ -1683,9 +1683,9 @@ static void test_effect_parameter_value(IDirect3DDevice9 *device)
UINT res_value_offset = res[k].value_offset;
D3DXHANDLE parameter;
D3DXPARAMETER_DESC pdesc;
BOOL bvalue;
INT ivalue;
FLOAT fvalue;
BOOL bvalue = TRUE;
INT ivalue = 42;
FLOAT fvalue = 2.71828f;
DWORD input_value[EFFECT_PARAMETER_VALUE_ARRAY_SIZE];
DWORD expected_value[EFFECT_PARAMETER_VALUE_ARRAY_SIZE];
UINT l, n, m, element;