From ac8fc8f7e1ab31c48924e7ada1407859713e558e Mon Sep 17 00:00:00 2001 From: nullprop Date: Fri, 27 Jan 2023 22:06:09 +0200 Subject: [PATCH] update readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..39ba228 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# wpgu-renderer + +A small [wgpu](https://github.com/gfx-rs/wgpu) renderer written in [Rust](https://github.com/rust-lang/rust). + +## Features + +- Physically based shading + - (F: Fresnel-Schlick approximation) + - (G: Smith's Schlick-GGX) + - (D: Trowbridge-Reitz GGX) +- gltf models +- 1 realtime light +- Simple wgsl preprocessor for includes + +## References +- [Learn Wgpu](https://sotrh.github.io/learn-wgpu/) +- [Learn OpenGL](https://learnopengl.com/)