On 5 September 2016 at 21:45, Nikolay Sivov nsivov@codeweavers.com wrote:
- static const struct
- {
const char *name;
DXGI_FORMAT format;
unsigned int bit_count;
DWORD mask_r, mask_g, mask_b;
BOOL getdc_supported;
- }
- testdata[] =
- {
{"B8G8R8A8_UNORM", DXGI_FORMAT_B8G8R8A8_UNORM, 32, 0x00000000, 0x00000000, 0x00000000, TRUE },
{"B8G8R8A8_TYPELESS", DXGI_FORMAT_B8G8R8A8_TYPELESS, 32, 0x00000000, 0x00000000, 0x00000000, TRUE },
{"B8G8R8A8_UNORM_SRGB", DXGI_FORMAT_B8G8R8A8_UNORM, 32, 0x00000000, 0x00000000, 0x00000000, TRUE },
- };
I guess this was inherited from the d3d9 test, but not all of these fields are very useful in the current form of the test. Do you intend to add more formats later?