[rs] Mipmap screenshot

This commit is contained in:
Dzmitry Malyshau
2019-06-14 10:06:18 -04:00
parent f2cd0348dc
commit 14f98aa627
3 changed files with 10 additions and 4 deletions

View File

@@ -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

BIN
wgpu/etc/example-mipmap.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View File

@@ -426,5 +426,5 @@ impl framework::Example for Example {
}
fn main() {
framework::run::<Example>("cube");
framework::run::<Example>("mipmap");
}