WebGPU Fundamentals
webgpufundamentals.org·23h·
Discuss: Hacker News

This article will try to teach you the very fundamentals of WebGPU.

If you already know WebGL, read this.

WebGPU is an API that lets you do 2 basic things.

Draw triangles/points/lines to textures 1. Run computations on the GPU That is it!

Everything about WebGPU after that is up to you. It’s like learning a computer language like JavaScript, or Rust, or C++. First you learn the basics, then it’s up to you to creatively use those basics to solve your problem.

WebGPU is an extremely low-level API. While you can make some small examples, for many apps it will likely require a large amount of code and some serious organization of data.…

Similar Posts

Loading similar posts...