Newer
Older
HuangJiPC / public / static / three / examples / jsm / renderers / webgpu / WebGPUBinding.js
@zhangdeliang zhangdeliang on 21 Jun 265 bytes update
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;