view packages/services/gfx/mw/current/src/mwin/winlib/fastfill.c @ 3292:7f8e529b4d82 default tip

Fix FREESCALE_EDMA_NBYTES_MLOFFYES_MLOFF() so it works with negative offsets.
author vae
date Wed, 29 Apr 2015 23:31:48 +0000
parents e0c0827131d1
children
line wrap: on
line source

#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);
}