GPUShaderModule
The GPUShaderModule interface of the WebGPU API represents an internal shader module object, a container for WGSL shader code that can be submitted to the GPU for execution by a pipeline.
Available only in secure contexts.
Extends
Methods
getCompilationInfo()
getCompilationInfo(): Promise<GPUCompilationInfo>;
The getCompilationInfo() method of the GPUShaderModule interface returns a Promise that fulfills with a GPUCompilationInfo object containing messages generated during the GPUShaderModule's compilation.
Returns
Promise<GPUCompilationInfo>
Properties
label
label: string;