UNPKG

214 BJavaScriptView Raw
1class GLBuffer {
2 constructor(buffer) {
3 this.buffer = buffer || null;
4 this.updateID = -1;
5 this.byteLength = -1;
6 this.refCount = 0;
7 }
8}
9
10export { GLBuffer };
11//# sourceMappingURL=GLBuffer.mjs.map