1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 10:49:36 +02:00
Oinktube/node_modules/three/examples/jsm/renderers/webgpu/WebGPUBinding.js
2023-12-11 11:59:56 -03:00

20 lines
239 B
JavaScript

class WebGPUBinding {
constructor( name = '' ) {
this.name = name;
this.visibility = null;
this.type = null; // read-only
}
setVisibility( visibility ) {
this.visibility = visibility;
}
}
export default WebGPUBinding;