d3d9: Fix the shader constant test.

Using the same values for the test data and the default data masks
potential failures.
oldstable
Henri Verbeet 2008-12-16 16:37:37 +01:00 committed by Alexandre Julliard
parent 78ad5de8da
commit 1e1cf78073
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ static const shader_constant_data shader_constant_default_data = {
static const shader_constant_data shader_constant_test_data = {
{ 0xdead0000, 0xdead0001, 0xdead0002, 0xdead0003 },
{ 0.0f, 0.0f, 0.0f, 0.0f },
{ 5.0f, 6.0f, 7.0f, 8.0f },
{ TRUE, FALSE, FALSE, TRUE }
};