clearColorBuffer property

void clearColorBuffer=(bool clear)

Implementation

void set clearColorBuffer(bool clear) {
  if (clear)
    _clear_mode |= GL_COLOR_BUFFER_BIT;
  else
    _clear_mode &= ~GL_COLOR_BUFFER_BIT;
}