Notes on WebGPU Fundamentals
February 17, 2024•45,828 words
This is a summary of webgpufundamentals.org so all credits to them.
Some of the code is shortened or changed.I am by far not done reading it yet, so this post will be continuously updated.WebGPU is meant to be the successor of WebGL which is based on OpenGL, first developed in 1992, and to more efficiently interact with modern GPU hardware.The API is already available on Chrome and Edge but still marked as experimental.Basically all it does is run 3 types of functions on the GPU:Vertex Shader
...
Read post