From 4e6d9cc32c604bfe55fcba91a98bc0b1a6b7a507 Mon Sep 17 00:00:00 2001 From: Matthew Lahmann Date: Mon, 13 Jun 2016 07:41:05 -0700 Subject: [PATCH] Added autoResize to RenderOptions (#9601) http://pixijs.github.io/docs/PIXI.WebGLRenderer.html If the render view is automatically resized, default false --- pixi.js/pixi.js.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/pixi.js/pixi.js.d.ts b/pixi.js/pixi.js.d.ts index 179bf381ce..2b1565f7d6 100644 --- a/pixi.js/pixi.js.d.ts +++ b/pixi.js/pixi.js.d.ts @@ -504,6 +504,7 @@ declare namespace PIXI { view?: HTMLCanvasElement; transparent?: boolean; antialias?: boolean; + autoResize?: boolean; resolution?: number; clearBeforeRendering?: boolean; preserveDrawingBuffer?: boolean;