resetPixelShape method

void resetPixelShape(
  1. int newWidth,
  2. int newHeight
)

Implementation

void resetPixelShape(int newWidth, int newHeight) {
  pixelWidth = newWidth;
  pixelHeight = newHeight;
  display.renderer.renderBackground(backgroundColor);
  display.setDisplaySize(pixelWidth, pixelHeight);
  resizeFrameShape();
}