Skip to main content

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.

MDN Reference

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.

MDN Reference

Returns

Promise<GPUCompilationInfo>

Properties

label

label: string;

MDN Reference

Inherited from

GPUObjectBase.label