Chartbreaker
    Preparing search index...

    Interface 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

    interface GPUShaderModule {
        label: string;
        getCompilationInfo(): Promise<GPUCompilationInfo>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    label: string

    Methods

    • 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>