| 10713 | * @category GPU |
| 10714 | */ |
| 10715 | declare class GPUShaderModule implements GPUObjectBase { |
| 10716 | label: string; |
| 10717 | |
| 10718 | /** |
| 10719 | * Returns compilation messages for this shader module, |
| 10720 | * which can include errors, warnings and info messages. |
| 10721 | */ |
| 10722 | getCompilationInfo(): Promise<GPUCompilationInfo>; |
| 10723 | } |
| 10724 | |
| 10725 | /** @category GPU */ |
| 10726 | interface GPUShaderModuleDescriptor extends GPUObjectDescriptorBase { |
nothing calls this directly
no outgoing calls
no test coverage detected