3D-Demo/jsm/renderers/webgpu/WebGPUBinding.js

23 lines
265 B
JavaScript
Raw Normal View History

2022-10-14 16:50:42 +08:00
class WebGPUBinding {
constructor( name = '' ) {
this.name = name;
this.visibility = null;
this.type = null; // read-only
this.isShared = false;
}
setVisibility( visibility ) {
this.visibility = visibility;
}
}
export default WebGPUBinding;