Added missing properties and corrected property spelling in 'pixi.js'.

This commit is contained in:
Daniel Rosenwasser 2015-09-01 13:57:44 -07:00
parent e06a2a9024
commit 5a5d2f56dc

View File

@ -492,16 +492,18 @@ declare module PIXI {
//renderers
export interface RendererOptions {
view?: HTMLCanvasElement;
transparent?: boolean
antialias?: boolean;
resolution?: number;
clearBeforeRendering?: boolean;
preserveDrawingBuffer?: boolean;
forceFXAA?: boolean;
roundPixels?: boolean;
autoResize?: boolean;
backgroundColor?: number;
blendModes?: { [s: string]: any; };
clearBeforeRender?: boolean;
}
export class SystemRenderer extends EventEmitter {