mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-10 04:10:39 +00:00
18 lines
337 B
C
18 lines
337 B
C
|
#include "wgt.h"
|
||
|
|
||
|
unsigned int wgetpixel (short x, short y)
|
||
|
{
|
||
|
return abuf[y * WGT_SYS.xres + x];
|
||
|
}
|
||
|
|
||
|
void wputpixel (short x, short y)
|
||
|
{
|
||
|
if ((y <= by) & (x <= bx) & (y >= ty) & (x >= tx))
|
||
|
abuf[y * WGT_SYS.xres + x] = currentcolor;
|
||
|
}
|
||
|
|
||
|
void wfastputpixel (short x, short y)
|
||
|
{
|
||
|
abuf[y * WGT_SYS.xres + x] = currentcolor;
|
||
|
}
|