7 releases

0.2.2 Oct 24, 2021
0.2.1 Oct 24, 2021
0.1.2 Sep 20, 2021
0.0.6 Aug 22, 2021

#74 in Rendering engine

42 downloads per month

MIT OR Apache-2.0 OR Zlib

420KB
9K SLoC

Rust 8K SLoC // 0.0% comments GLSL 893 SLoC // 0.1% comments WebGPU Shader Language 74 SLoC // 0.1% comments

rend3

GitHub Workflow Status Crates.io Documentation License

Easy to use, customizable, efficient 3D renderer library built on wgpu.

Library is under active development. While internals will likely change quite a bit, the external api will only experience minor changes as features are added.

To use rend3 add the following to your Cargo.toml:

rend3 = "0.2.2"

Screenshots

scifi-base emerald-square example

Examples

Take a look at the examples getting started with the api.

Purpose

rend3 tries to fulfill the following usecases:

  1. Games and visualizations that need a customizable, and efficient renderer.
  2. Small projects that just want to put objects on screen, but want lighting and effects.
  3. A small cog in a big machine: a renderer doesn't interfere with the rest of the program.

rend3 is not:

  1. A framework or engine. It does not include all the parts needed to make an advanced game or simulation nor care how you structure your program. I do have plans for a rend3-util (or similar) crate that is a very basic framework for the second use case listed above.

GPU Culling

On Vulkan and DX12 "gpu mode" is enabled by default, which uses modern bindless resources and gpu-based culling. This reduces CPU load and allows sigifigantly more powerful culling.

Future Plans

I have grand plans for this library. An overview can be found in the issue tracker under the enhancement label.

Helping Out

We welcome all contributions and ideas. If you want to participate or have ideas for this library, we'd love to hear them!

License: MIT OR Apache-2.0 OR Zlib

Dependencies

~11–16MB
~336K SLoC