G2D_DrawPixel
Declaration:
int G2D_DrawPixel(int x, int y, unsigned short int color);

Purpose:
Draws pixel at screen location x,y of specified color.

Example:
G2D_DrawPixel(100, 100, 31);
// color is a 16bit value.

1