Bevy-Rust-GPU / bevy-pbr-rust

rust-gpu port of bevy-pbr
Apache License 2.0
6 stars 1 forks source link
bevy bevy-pbr rust rust-gpu
# `bevy-pbr-rust` [![Documentation](https://img.shields.io/badge/docs-API-blue)](https://bevy-rust-gpu.github.io/bevy-pbr-rust/) A Rust reimplementation of `bevy_pbr`'s WGSL shaders.

Implementation

Shader def conditionals are implemented using compile-time trait generics, and entrypoint permutations are generated via permutate-macro.

Compatibility

At time of writing, rust-gpu only supports read-write access to storage buffers, which renders its implementation incompatible with the read-only buffers bevy uses to store light and cluster data on supported platforms.

As such, consuming bevy applications should make sure to force storage buffers off via WgpuSettings. This is taken care of automatically if using bevy-rust-gpu.