15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
'use strict';
|
|
|
|
"use strict";
|
|
class GlRenderTarget {
|
|
constructor() {
|
|
this.width = -1;
|
|
this.height = -1;
|
|
this.msaa = false;
|
|
this.msaaRenderBuffer = [];
|
|
}
|
|
}
|
|
|
|
exports.GlRenderTarget = GlRenderTarget;
|
|
//# sourceMappingURL=GlRenderTarget.js.map
|