13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
"use strict";
|
|
class GlRenderTarget {
|
|
constructor() {
|
|
this.width = -1;
|
|
this.height = -1;
|
|
this.msaa = false;
|
|
this.msaaRenderBuffer = [];
|
|
}
|
|
}
|
|
|
|
export { GlRenderTarget };
|
|
//# sourceMappingURL=GlRenderTarget.mjs.map
|