FreeRDP
Loading...
Searching...
No Matches
libfreerdp/gdi/test/helpers.h
1
21#ifndef GDI_TEST_HELPERS_H
22#define GDI_TEST_HELPERS_H
23
24#include <freerdp/codec/color.h>
25#include <freerdp/gdi/bitmap.h>
26
27WINPR_ATTR_NODISCARD
28FREERDP_LOCAL
29HGDI_BITMAP test_convert_to_bitmap(const BYTE* src, UINT32 SrcFormat, UINT32 SrcStride, UINT32 xSrc,
30 UINT32 ySrc, UINT32 DstFormat, UINT32 DstStride, UINT32 xDst,
31 UINT32 yDst, UINT32 nWidth, UINT32 nHeight,
32
33 const gdiPalette* hPalette);
34
35FREERDP_LOCAL
36void test_dump_bitmap(HGDI_BITMAP hBmp, const char* name);
37
38WINPR_ATTR_NODISCARD
39FREERDP_LOCAL
40BOOL test_assert_bitmaps_equal(HGDI_BITMAP hBmpActual, HGDI_BITMAP hBmpExpected, const char* name,
41 const gdiPalette* palette);
42
43#endif /* __GDI_CORE_H */