pixels/examples/custom-shader
Jay Oster 899e27bafa
Remove get_ and set_ prefixes from public APIs (#341)
This renames:

- `get_frame` to `frame`
- `get_frame_mut` to `frame_mut`
- `set_clear_color` to `clear_color`

Which more closely follows convention set by the standard library et al.
2023-03-09 19:42:57 -08:00
..
shaders Use type inference in custom_shader WGSL (#334) 2023-01-28 11:00:51 -08:00
src Remove get_ and set_ prefixes from public APIs (#341) 2023-03-09 19:42:57 -08:00
Cargo.toml Update all dependencies in the workspace (#323) 2022-12-17 17:35:02 -08:00
README.md Add custom shader example (#100) 2020-07-19 02:18:02 -07:00

Custom Shader Example

Custom Shader Example

Running

cargo run --release --package custom-shader

About

This example is based on minimal-winit, and extends it with a custom renderer that adds white noise to the screen.