]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/services/gfx/mw/v2_0/src/mwin/winlib/fastfill.c
Initial revision
[karo-tx-redboot.git] / packages / services / gfx / mw / v2_0 / src / mwin / winlib / fastfill.c
1 #include "windows.h"
2 #include "wintools.h"
3 /*
4  * WIN Draw Library
5  *      Fast fill rectangle
6  */
7
8 /*
9  * fast fill background (works with non-dithered colors only)
10  */
11 void WINAPI
12 FastFillRect(HDC hdc,LPRECT lprect,COLORREF cr)
13 {
14         COLORREF        crOld;
15
16         crOld = SetBkColor( hdc, cr);
17         ExtTextOut( hdc, 0, 0, ETO_OPAQUE | ETO_CLIPPED, lprect, NULL, 0, NULL);
18         SetBkColor( hdc, crOld);
19 }