2 Dec
2022
2 Dec
'22
6:14 a.m.
Alex Henrie (@alexhenrie) commented about dlls/gdiplus/tests/matrix.c:
GdipDeleteMatrix(matrix); }
+static void test_scale(void) +{ + GpStatus status; + GpMatrix *matrix = NULL; + REAL elems[6]; + + REAL expected_elem[] = {3.0, -4.0, 90.0, 80.0, -1500.0, 1200.0}; + REAL expected_elem2[] = {3.0, -6.0, 60.0, 80.0, -500.0, 600.0};
These arrays could be `static const`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1618#note_18388