예제 #1
0
//----------------------------------------------------------
void ofClear(float brightness, float a){
	renderer->clear(brightness, brightness, brightness, a);
}
예제 #2
0
//----------------------------------------------------------
void ofClear(const ofColor & c){
	renderer->clear(c.r, c.g, c.b, c.a);
}
예제 #3
0
//----------------------------------------------------------
void ofClear(float r, float g, float b, float a){
	renderer->clear(r,g,b,a);
}