d3d10core/tests: Remove unnecessary explicit array sizes.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
aa817a85cb
commit
08ba886c72
|
@ -3601,35 +3601,35 @@ static void test_texture(void)
|
|||
0xffb1c4de, 0xfff0f1f2, 0xfffafdfe, 0xff5a560f,
|
||||
0xffd5ff00, 0xffc8f99f, 0xffaa00aa, 0xffdd55bb,
|
||||
};
|
||||
static const BYTE bc1_data[4 * 8] =
|
||||
static const BYTE bc1_data[] =
|
||||
{
|
||||
0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00,
|
||||
0xe0, 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00,
|
||||
0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
static const BYTE bc2_data[4 * 16] =
|
||||
static const BYTE bc2_data[] =
|
||||
{
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
static const BYTE bc3_data[4 * 16] =
|
||||
static const BYTE bc3_data[] =
|
||||
{
|
||||
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
static const BYTE bc4_data[4 * 8] =
|
||||
static const BYTE bc4_data[] =
|
||||
{
|
||||
0x10, 0x7f, 0x77, 0x39, 0x05, 0x00, 0x00, 0x00,
|
||||
0x10, 0x7f, 0x49, 0x92, 0x24, 0x49, 0x92, 0x24,
|
||||
0x10, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0x10, 0x7f, 0xb6, 0x6d, 0xdb, 0xb6, 0x6d, 0xdb,
|
||||
};
|
||||
static const BYTE bc5_data[4 * 16] =
|
||||
static const BYTE bc5_data[] =
|
||||
{
|
||||
0x10, 0x7f, 0x77, 0x39, 0x05, 0x00, 0x00, 0x00, 0x10, 0x7f, 0x77, 0x39, 0x05, 0x00, 0x00, 0x00,
|
||||
0x10, 0x7f, 0x49, 0x92, 0x24, 0x49, 0x92, 0x24, 0x10, 0x7f, 0x49, 0x92, 0x24, 0x49, 0x92, 0x24,
|
||||
|
|
Loading…
Reference in New Issue