Myth
A High-Performance, WGPU-Based Rendering Engine for Rust.
Showcase | glTF Samples | glTF Viewer & Inspector | Examples
📢 Status: Beta
Myth is now in Beta. The core architecture is stable and ready for real-world use. APIs are still evolving, and occasional breaking changes may occur.
Introduction
Myth is a developer-friendly, high-performance 3D rendering engine written in Rust.
Inspired by the ergonomic simplicity of Three.js and built on the modern power of wgpu, Myth aims to bridge the gap between low-level graphics APIs and high-level game engines.
Why Myth?
wgpu is incredibly powerful — but even a simple scene requires hundreds of lines of boilerplate.
Bevy and Godot feel too heavy when you just want a lean rendering library.
Myth solves this with a strict SSA-based RenderGraph that treats rendering as a compiler problem:
- Automatic topological sort + dead-pass elimination
- Aggressive transient memory aliasing (zero manual…