1 | import { MSAA_QUALITY } from "@pixi/constants";
|
2 | class GLFramebuffer {
|
3 | constructor(framebuffer) {
|
4 | this.framebuffer = framebuffer, this.stencil = null, this.dirtyId = -1, this.dirtyFormat = -1, this.dirtySize = -1, this.multisample = MSAA_QUALITY.NONE, this.msaaBuffer = null, this.blitFramebuffer = null, this.mipLevel = 0;
|
5 | }
|
6 | }
|
7 | export {
|
8 | GLFramebuffer
|
9 | };
|
10 | //# sourceMappingURL=GLFramebuffer.mjs.map
|