Files
wgpu/examples/src/stencil_triangles
Erich Gubler 85346dfd20 chore: use std::mem::size_of{,_val} s'more
As before, this is to minimize diffs. with Rust 1.80.
2024-09-03 10:18:25 -04:00
..
2023-11-25 22:59:40 +00:00

stencil_triangles

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 --bin wgpu-examples stencil_triangles

Screenshots

Stencil Triangles window