URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mw/] [src/] [mwin/] [winlib/] [fastfill.c] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
#include "windows.h" #include "wintools.h" /* * WIN Draw Library * Fast fill rectangle */ /* * fast fill background (works with non-dithered colors only) */ void WINAPI FastFillRect(HDC hdc,LPRECT lprect,COLORREF cr) { COLORREF crOld; crOld = SetBkColor( hdc, cr); ExtTextOut( hdc, 0, 0, ETO_OPAQUE | ETO_CLIPPED, lprect, NULL, 0, NULL); SetBkColor( hdc, crOld); }
Go to most recent revision | Compare with Previous | Blame | View Log