10 lines
282 B
C
10 lines
282 B
C
|
#include "gfxtype.h"
|
||
|
#include "devctxt.h"
|
||
|
|
||
|
COLORREF DC_SetPixel(PDCTXT pdctxt, INT32 x, INT32 y, COLORREF color)
|
||
|
{
|
||
|
if (!G_coords_in_rect(&(pdctxt->cliprect), x, y))
|
||
|
return (COLORREF)(-1);
|
||
|
return (*(pdctxt->funcs->set_pixel))(pdctxt->privdata, xm, y, colorref, pdctxt->rop2);
|
||
|
}
|