Shadertoys ported to Rust GPU
We ported a few popular Shadertoy shaders over to Rust
using Rust GPU. The process was straightforward
and we want to share some highlights.
The code is available on GitHub.
What is Rust GPU?
Rust GPU is a project that allows you to write code for
GPUs using the Rust programming language. GPUs are typically programmed using
specialized languages like WGSL,
GLSL,
MSL,
or
HLSL.
Rust GPU changes this by letting you use Rust to write GPU programs (often called
"shaders" or "kernels").
These Rust GP...
Read more at rust-gpu.github.io