/webgpu-synth

A simple synthesizer powered by WebGPU

Primary LanguageJavaScriptMIT LicenseMIT

webgpu-synth

Architecture

flowchart LR
  subgraph SharedArrayBuffer
    States
    OutputRingBuffer
  end

  MainScope --> DedicatedWorkerGlobalScope
  States --> MainScope
  OutputRingBuffer --> MainScope
  MainScope <--> GPU

  DedicatedWorkerGlobalScope --> OutputRingBuffer
  DedicatedWorkerGlobalScope <--> States
  DedicatedWorkerGlobalScope <--> GPU

  AudioWorkletGlobalScope --> States
  OutputRingBuffer --> AudioWorkletGlobalScope
Loading