C
void ClearDevice();
Overview
This function clears the screen with the current color and sets the graphic cursor position to (0, 0). Clipping is NOT supported by ClearDevice().
Returns
none
Side Effects
none
Example
void ClearScreen(void) { SetColor(WHITE); // set color to WHITE ClearDevice(); // set screen to all WHITE }