WebGPUBinding.js 213 B

1234567891011121314151617181920
  1. class WebGPUBinding {
  2. constructor() {
  3. this.bindingPoint = 0;
  4. this.name = '';
  5. this.type = null;
  6. this.visibility = null;
  7. }
  8. setName( name ) {
  9. this.name = name;
  10. }
  11. }
  12. export default WebGPUBinding;