SetBackgroundColor /Environment and display

void SetBackgroundColor(uint color)

Sets the background color. The background color is used to fill the entire back-buffer at the beginning of every frame.

uint white = ARGB(255,255,255,255);
SetBackgroundColor(white);
uint black = 0xFF000000;
SetBackgroundColor(black);