UNPKG

726 BTypeScriptView Raw
1import { MSAA_QUALITY } from '@pixi/constants';
2import type { ISystem } from '../system/ISystem';
3import type { Renderer } from '../Renderer';
4import type { IRenderingContext } from '../IRenderer';
5import type { ExtensionMetadata } from '@pixi/extensions';
6/**
7 * System that manages the multisample property on the WebGL renderer
8 * @memberof PIXI
9 */
10export declare class MultisampleSystem implements ISystem {
11 /** @ignore */
12 static extension: ExtensionMetadata;
13 /**
14 * The number of msaa samples of the canvas.
15 * @readonly
16 */
17 multisample: MSAA_QUALITY;
18 private renderer;
19 constructor(renderer: Renderer);
20 protected contextChange(gl: IRenderingContext): void;
21 destroy(): void;
22}