mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[GDI32_APITEST]
- Add test showing that a bitmap created using CreateDIBItmap can be selected into a DC despite a different bits depth svn path=/trunk/; revision=57693
This commit is contained in:
@@ -415,7 +415,7 @@ void Test_CreateDIBitmap_RLE8()
|
||||
void
|
||||
Test_CreateDIBitmap_CBM_CREATDIB(void)
|
||||
{
|
||||
HBITMAP hbmp;
|
||||
HBITMAP hbmp, hbmpOld;
|
||||
HDC hdc;
|
||||
BITMAPINFO bmi =
|
||||
{{sizeof(BITMAPINFOHEADER), 4, 4, 1, 8, BI_RGB, 0, 1, 1, 1, 0}, {{0,0,0,0}}};
|
||||
@@ -437,6 +437,11 @@ Test_CreateDIBitmap_CBM_CREATDIB(void)
|
||||
ok_int(bitmap.bmBitsPixel, 8);
|
||||
ok_ptr(bitmap.bmBits, 0);
|
||||
|
||||
hbmpOld = SelectObject(hdc, hbmp);
|
||||
ok(hbmpOld != NULL, "Couldn't select the bitmap.\n");
|
||||
SelectObject(hdc, hbmpOld);
|
||||
DeleteObject(hbmp);
|
||||
DeleteDC(hdc);
|
||||
}
|
||||
|
||||
START_TEST(CreateDIBitmap)
|
||||
|
||||
Reference in New Issue
Block a user