mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
1f0f4f62b0
- Test Rectangle function. Don't laugh, ROS fails those tests and fixing this breaks the GUI. svn path=/trunk/; revision=51018
40 lines
945 B
C
40 lines
945 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for GetPixel
|
|
* PROGRAMMERS: Jérôme Gardou
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <wine/test.h>
|
|
#include <windows.h>
|
|
|
|
|
|
void Test_GetPixel_1bpp()
|
|
{
|
|
HDC hdc;
|
|
HBITMAP hbmp;
|
|
char buffer[] = {0x80, 0x0};
|
|
COLORREF color;
|
|
|
|
hbmp = CreateBitmap(2,1,1,1,buffer);
|
|
ok(hbmp != NULL, "Failed to create a monochrom bitmap...\n");
|
|
hdc = CreateCompatibleDC(0);
|
|
hbmp = SelectObject(hdc, hbmp);
|
|
ok(hbmp != NULL, "Could not select the bitmap into the DC.\n");
|
|
|
|
color = GetPixel(hdc, 0, 0);
|
|
ok(color == 0xFFFFFF, "Wrong color at 0,0 : 0x%08x\n", (UINT)color);
|
|
color = GetPixel(hdc, 1, 0);
|
|
ok(color == 0, "Wrong color at 1,0 : 0x%08x\n", (UINT)color);
|
|
|
|
hbmp = SelectObject(hdc, hbmp);
|
|
DeleteObject(hbmp);
|
|
DeleteDC(hdc);
|
|
}
|
|
|
|
START_TEST(GetPixel)
|
|
{
|
|
Test_GetPixel_1bpp();
|
|
}
|