clearBackground function

void clearBackground(
  1. Color color
)

Set background color (framebuffer clear color).

Implementation

void clearBackground(Color color) {
  return library.ClearBackground(color.ref);
}