wgpu/examples/stencil-triangles
Connor Fitzgerald 10172e1f38
Move Examples and Tests to Their Own Crates (#3841)
Co-authored-by: Connor Fitzgerald <connor@modyfi.io>
2023-06-10 18:35:46 +00:00
..
src Move Examples and Tests to Their Own Crates (#3841) 2023-06-10 18:35:46 +00:00
Cargo.toml Move Examples and Tests to Their Own Crates (#3841) 2023-06-10 18:35:46 +00:00
README.md Move Examples and Tests to Their Own Crates (#3841) 2023-06-10 18:35:46 +00:00
screenshot.png Move Examples and Tests to Their Own Crates (#3841) 2023-06-10 18:35:46 +00:00

hello-triangle

This example renders two different sized triangles to display three same sized triangles, by demonstrating the use of stencil buffers.

First it draws a small "mask" triangle, which sets the stencil buffer at every pixel to 1.

Then, it draws a larger "outer" triangle which only touches pixels where the stencil buffer is less than 1.

To Run

cargo run --example stencil-triangles

Screenshots

Stencil Triangles window