webgl2-fundamentals icon indicating copy to clipboard operation
webgl2-fundamentals copied to clipboard

WebGL 2 lessons starting from the basics

Results 18 webgl2-fundamentals issues
Sort by recently updated
recently updated
newest added

On the page https://github.com/greggman/webgl2-fundamentals/blob/master/webgl/lessons/webgl-2d-matrices.md the rotation matrix generator is incorrectly defined as: ```javascript rotation: function(angleInRadians) { var c = Math.cos(angleInRadians); var s = Math.sin(angleInRadians); return [ c,-s, 0, s, c,...

Hello, How are you? createBufferAndSetupAttribute(positionLoc, [ -1, -1, 1, -1, -1, 1, -1, 1, 1, -1, 1, 1, ]); For those position, I hope you explain the position usage. Thank...

First of all thanks for the great content. I't always bothers me how expensive the homepage is. It puts lots of pressure on the GPU and I feel really distracted...

Hello, I am currently learning WebGL2 with the help of the website, but felt the index page was missing a starting point for beginners. As the "Fundamentals" articles requires having...

**Is your feature request related to a problem? Please describe.** This guide is great, but there seems to be some discontinuity between a lot of the sections in the WebGL2...

On https://webgl2fundamentals.org/webgl/lessons/webgl-less-code-more-fun.html, one of the example `gl.vertexAttributePointer()` calls, the one for `a_texcoordLoc`, is missing the boolean "normalized" param: ``` // Setup all the buffers and attributes (assuming you made the...

I noticed that the example "transform feedback" of the webgl-state-diagram stops on the line **gl.beginTransformFeedback(gl.POINTS);** ![image](https://user-images.githubusercontent.com/7129968/236752457-eceab220-cc1e-48c2-9fd2-1206688e2662.png) ![image](https://user-images.githubusercontent.com/7129968/236752587-0f0d2ca9-3f19-4f10-a246-af4aa3ed8d9b.png) ![image](https://user-images.githubusercontent.com/7129968/236752942-a78323d8-f141-4bf4-a30f-9a0449601137.png)

### Discussed in https://github.com/gfxfundamentals/webgl2-fundamentals/discussions/183 Originally posted by **ArcanePython** December 24, 2022 I submit this bug here, because for some reason your bug report does not submit (grey button) **Describe the...