laya-coreui-es
Version:
laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改
22 lines (21 loc) • 490 B
JavaScript
import { LayaGL } from "../../layagl/LayaGL";
export class Buffer {
get bufferUsage() {
return this._bufferUsage;
}
constructor() {
this._byteLength = 0;
this._glBuffer = LayaGL.instance.createBuffer();
}
_bindForVAO() {
}
bind() {
return false;
}
destroy() {
if (this._glBuffer) {
LayaGL.instance.deleteBuffer(this._glBuffer);
this._glBuffer = null;
}
}
}