UNPKG

438 BJavaScriptView Raw
1import { MSAA_QUALITY } from '@pixi/constants';
2
3class GLFramebuffer {
4 constructor(framebuffer) {
5 this.framebuffer = framebuffer;
6 this.stencil = null;
7 this.dirtyId = -1;
8 this.dirtyFormat = -1;
9 this.dirtySize = -1;
10 this.multisample = MSAA_QUALITY.NONE;
11 this.msaaBuffer = null;
12 this.blitFramebuffer = null;
13 this.mipLevel = 0;
14 }
15}
16
17export { GLFramebuffer };
18//# sourceMappingURL=GLFramebuffer.mjs.map