Guide for using gfx-rs's wgpu library.
Go to file
sotrh 1fda21eb6a
Merge pull request #134 from fisherdarling/patch-1
Fixed small typo in beginner/tutorial8-depth
2021-01-21 17:02:46 -07:00
code Fix inconsistent position of the 'size' field in the beginner tutorials 2021-01-15 19:31:51 +00:00
docs Fixed small typo in beginner/tutorial8-depth 2021-01-21 19:14:01 +00:00
.gitignore fixed #129 2020-12-12 15:53:42 -07:00
.travis.yml travis now installs libasound2-dev 2020-12-20 00:49:02 -07:00
Cargo.lock removed camera research 2020-12-21 13:33:42 -07:00
Cargo.toml started performance research 2020-06-21 00:49:43 -06:00
deploy.sh updated deploy.sh to cleanup dist git repo 2020-11-23 23:43:35 -07:00
FEATURES.md tutorial4-buffer 2019-10-25 01:57:14 -06:00
LICENSE.md license 2020-09-02 12:59:22 -06:00
package-lock.json Bump ini from 1.3.5 to 1.3.8 2020-12-12 14:30:32 +00:00
package.json finished lighting rewrite 2020-04-17 21:23:19 -06:00
run-all.sh Remove unnecessary comment 2020-11-30 14:55:41 +11:00
rustfmt.toml rustfmt 2020-09-27 23:24:43 -06:00

Introduction

What is wgpu?

Wgpu is a Rust implementation of the WebGPU API spec. WebGPU is a specification published by the GPU for the Web Community Group. It aims to allow web code access to GPU functions in a safe and reliable manner. It does this by mimicking the Vulkan API, and translating that down to whatever API the host hardware is using (ie. DirectX, Metal, Vulkan).

Wgpu is still in development, so some of this doc is subject to change.

Why Rust?

Wgpu actually has C bindings to allow you to write C/C++ code with it, as well as use other languages that interface with C. That being said, wgpu is written in Rust, and it has some convient Rust bindings that don't have to jump through any hoops. On top of that, I've been enjoying writing in Rust.

You should be fairly familiar with Rust before using this tutorial as I won't go into much detail on Rust syntax. If you're not super comfortable with Rust you can review the Rust tutorial. You should also be familiar about Cargo.

I'm using this project as a way to learn wgpu myself, so I might miss some important details, or explain things wrong. I'm always open to constructive feedback.

Contribution and Support

  • I accept pull requests for fixing issues with this tutorial such as typos, incorrect information, and other inconsistencies.
  • Due to wgpu's rapidly changing api, I'm not accepting any new pull requests for showcase demos.
  • If you want to support me directly, check out my patreon!

Special thanks to these patrons!

In no particular order

  • Paul E Hansen
  • Lennart
  • Gunstein Vatnar
  • yutani
  • David Laban