updateStageRect static method

void updateStageRect(
  1. GRect rect
)

(Internal usage) Updates the stage rectangle path with the given rect.

Implementation

static void updateStageRect(GRect rect) {
  stageRectPath.reset();
  stageRectPath.addRect(rect.toNative());
}