WebGL-List

WebGL

GPGPU

Resource

Book

  • 2018-《WebGL Fundamentals》📚: 这有一系列教程,从 WebGL 的基本理论讲起。它们不像大多数其他教程那样改编自旧的 OpenGL 文章。它们去旧迎新,丢弃一些过时的思想,让你彻底了解 WebGL 的工作原理。

  • 2022-《WebGL2 Fundamentals》📚: WebGL is often thought of as a 3D API. People think “I’ll use WebGL and magic I’ll get cool 3d”. In reality WebGL is just a rasterization engine. It draws points, lines, and triangles based on code you supply. Getting WebGL to do anything else is up to you to provide code to use points, lines, and triangles to accomplish your task.

OpenSource

  • 2017-PicoGL.js : PicoGL.js is a minimal WebGL 2 rendering library. It’s meant for developers who understand the WebGL 2 rendering pipeline and want to use it, but with a more convenient API. Typical usage of PicoGL.js will involve creating programs, vertex buffers, vertex arrays, uniform buffers, framebuffers, textures, transform feedbacks, and combining them into draw calls.

  • Hilo3d : 🎮 A 3D WebGL Rendering Engine developed by Alibaba Group

  • 2023-SwissGL : SwissGL is a minimalistic wrapper on top of WebGL2 JS API. It’s designed to reduce the amount of boilerplate code required to manage GLSL shaders, textures and framebuffers when making procedural visualizations or simulations.

上一页