diff --git a/wgpu/README.md b/wgpu/README.md index 0933a877bc..0f618d3f27 100644 --- a/wgpu/README.md +++ b/wgpu/README.md @@ -7,9 +7,8 @@ This is an idiomatic Rust wrapper over [wgpu-native](https://github.com/gfx-rs/w ## Gallery -![Cube](etc/example-cube.png) ![Shadow](etc/example-shadow.png) -![vange-rs](etc/vange-rs.png) ![Brawl](etc/brawl-attack.gif) -![GLX map](etc/glx-map.png) +![Cube](etc/example-cube.png) ![Shadow](etc/example-shadow.png) ![MipMap](etc/example-mipmap.png) +![vange-rs](etc/vange-rs.png) ![Brawl](etc/brawl-attack.gif) ![GLX map](etc/glx-map.png) ## Usage @@ -20,3 +19,10 @@ The library requires one of the following features enabled in order to run any o - "dx11" These examples assume that necessary dependencies for the graphics backend are already installed. For more information about installation and usage, refer to the [Getting Started](https://github.com/gfx-rs/gfx/blob/master/info/getting_started.md) gfx-rs guide. + +## Friends + +Shout out to the following projects that work best with wgpu-rs: + - [wgpu_glyph](https://github.com/hecrj/wgpu_glyph) - for your text-y rendering needs + - [coffee](https://github.com/hecrj/coffee) - a whole 2D engine + - [imgui-wgpu](https://github.com/unconed/imgui-wgpu-rs) - Dear ImGui interfacing diff --git a/wgpu/etc/example-mipmap.png b/wgpu/etc/example-mipmap.png new file mode 100644 index 0000000000..a5568746b2 Binary files /dev/null and b/wgpu/etc/example-mipmap.png differ diff --git a/wgpu/examples/mipmap/main.rs b/wgpu/examples/mipmap/main.rs index 1200948ebe..feaceed8e9 100644 --- a/wgpu/examples/mipmap/main.rs +++ b/wgpu/examples/mipmap/main.rs @@ -426,5 +426,5 @@ impl framework::Example for Example { } fn main() { - framework::run::("cube"); + framework::run::("mipmap"); }