glatic
is an experiment: can we use Rust's type machinery to statically check
the type safety of draw calls as well as their interactions with shader code?
glatic
approaches this problem by requiring shaders to be defined in
posh
— a functional EDSL for shaders — alongside the host
code that calls them.
One of Rust's advantages is its ability to catch some types of errors at compile-time through rigorous static typing. In graphics programming, a common source of error is a mismatch in the interface between host code and shader code. In fact, draw calls can be thought of as a foreign function interface between CPU and GPU. Thus, we believe that there is some potential in applying Rust's compile-time checks to draw calls.
We aim to validate draw calls statically by defining shader code alongside host
code and by explicitly declaring shader interfaces in Rust. As a secondary
effect, we hope that shaders written in posh
will become more reusable and
composable than usual shader code.
In order to simplify things, we intentionally limit the scope of glatic
and
posh
:
glatic
targets OpenGL (rather than a more modern API like WebGPU).posh
targets
GLSL 3.30.glatic
and posh
support only a subset of OpenGL and GLSL features.If the fundamental principle works out, we should be able to lift these restrictions over time.
Check out the following awesome (and much more mature) crates which are closely
related to the aims of glatic
and posh
.
rust-gpu
implements a new
compiler backend for rustc
that generates SPIR-V, empowering users to write
shaders in normal Rust code and to reuse code between the host and shaders.
Typically, rust-gpu
shaders are defined in separate crates. In contrast to
this, posh
is an EDSL that enables you to define shaders alongside host
code, and its primary goal is to statically check the interface between host
code and shader code.
Shades, like posh
, is an EDSL for
defining statically-typed shaders. Since there is a bit of syntactic overhead to
this, Shades provides a procedural macro with which shaders can be written.
posh
is intentionally less powerful than Shades: it does not support mutable
variables. Due to this limitation, we hope that posh
shaders can be succinctly
composed without a procedural macro.