resize method

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

Resize internal buffers.

Implementation

void resize(int width, int height) {
  _front.resize(width, height);
  _back.resize(width, height);
}