clear method
Clears the current target with a given color.
Implementation
@override
void clear(double red, double green, double blue, double alpha) {
glClearColor(red, green, blue, alpha);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
}