mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
20 lines
239 B
JavaScript
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;
|