Tour of WGSL

Overview

There are three key phases in a shader’s lifetime (shown in context below):

Shader creation time
Pipeline creation time
Shader execution time

Each phase finalizes the value for expressions in a certain category, as follows:

Evaluation Phase

Shader creation

  • Finalizes values for const-expressions
  • Sub-expressions can be:
    • literals,
    • @const function calls,
    • const-declared values

Pipeline creation

  • Finalizes values for override-expressions
  • Sub-expressions can be anything in a const-expression, plus

Shader execution

  • Finalizes values for runtime-expressions
  • Sub-expressions can be anything in a override-expression, plus
    • let-declared values
    • any function call,
    • variable contents
    • reference or pointer to a variable

In Context

The shader phases fit into a WebGPU application as follows:

AppBrowserGet a GPUAdapter, GPUDeviceShader-creation timePipeline-creation timeCreate and bind resources,Record GPU commands ...Shader executiondevice.createShaderModule(...)a GPUShaderModuledevice.createComputePipeline(...)or device.createRenderPipeline(...)Provides GPUProgrammablestage.constantsa GPUComputePipelineor GPURenderPipelinedevice.queue.submit(...)Wait to be scheduleddevice.queue.onSubmittedWorkDone()a pending Promise<undefined>fulfill PromiseAppBrowser