12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
"use strict";
|
|
class GpuRenderTarget {
|
|
constructor() {
|
|
this.contexts = [];
|
|
this.msaaTextures = [];
|
|
this.msaaSamples = 1;
|
|
}
|
|
}
|
|
|
|
export { GpuRenderTarget };
|
|
//# sourceMappingURL=GpuRenderTarget.mjs.map
|