UNPKG

three

Version:

JavaScript 3D library

23 lines (12 loc) 265 B
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;