1 | import { MSAA_QUALITY } from '@pixi/constants';
|
2 | import type { ExtensionMetadata } from '@pixi/extensions';
|
3 | import type { IRenderingContext } from '../IRenderer';
|
4 | import type { Renderer } from '../Renderer';
|
5 | import type { ISystem } from '../system/ISystem';
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export declare class MultisampleSystem implements ISystem {
|
11 |
|
12 | static extension: ExtensionMetadata;
|
13 | |
14 |
|
15 |
|
16 |
|
17 | multisample: MSAA_QUALITY;
|
18 | private renderer;
|
19 | constructor(renderer: Renderer);
|
20 | protected contextChange(gl: IRenderingContext): void;
|
21 | destroy(): void;
|
22 | }
|