resize method

void resize(
  1. int width,
  2. int height
)

Implementation

void resize(int width, int height) {
  _buffer.resize(Rect(0, 0, width, height));
}