learn-wgpu
learn-wgpu copied to clipboard
Guide for using gfx-rs's wgpu library.
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.4 to 6.6.1. Commits 9b77436 6.6.1 04cb6f5 Merge commit from fork b8a7edd 6.6.0 34c8534 fix: signature verification due to leading zeros 3e46a48 6.5.7 accb61e lib: DER signature...
Through following the GREAT tutorial, I find a part really confuses me, and this is often omitted in other shader tutorials as well: The classic rainbow triangle -- We all...
I am not a computer graphics expert by any means but I believe the specular term should not be multiplied by the color of the object. > The specular highlight...
 196 mb is a lot. I had seen this [project](https://github.com/GreenLightning/gpu-font-rendering/tree/master).  70 mb P.S. i changed code of that project. So i added fps limit. What can i do...
In the final shader.wgsl code for the HDR rendering tutorial Gramm-Schmidt is added but it seems that instead of `let world_bitangent = cross(world_tangent,in.world_normal);` it should be `let world_bitangent = cross(in.world_normal,...
The first page of the "Beginner" section ends with this sidebar: >If you intend to use your WASM module in a plain HTML website, you'll need to tell wasm-pack to...