30 Aug
2024
30 Aug
'24
4:46 p.m.
Matteo Bruni (@Mystral) commented about dlls/d3dx9_36/tests/surface.c:
+ return 1; + + default: + assert(0 && "Need to add format to get_bpp_for_d3dformat()."); + return 0; + } +} + +static void test_format_conversion(IDirect3DDevice9 *device) +{ + struct + { + D3DFORMAT src_format; + const PALETTEENTRY *src_palette; + const RECT src_rect; + const void *src_pix_data; Absolute nitpick, but this could be just `src_data` (also given `expected_dst_data` below.)
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6360#note_80581