Cross-platform, safe, pure-rust graphics api.
Go to file
2019-05-17 01:31:51 -04:00
examples Fix RenderPassColorAttachmentDescriptor 2019-05-15 22:38:59 -07:00
ffi Fix RenderPassColorAttachmentDescriptor 2019-05-15 22:38:59 -07:00
wgpu-native Fix semaphore iteration on submit 2019-05-17 01:31:51 -04:00
wgpu-remote Rust formatting pass 2019-05-14 13:00:00 -04:00
.clang-format Reduce left indentation for nested structs 2019-03-08 07:15:36 -07:00
.gitignore Remove wgpu-bindings in favor of configuration scripts 2019-04-30 12:45:05 -04:00
.travis.yml Fix cbindgen macro expansion and CI 2019-05-10 21:55:09 -04:00
bors.toml CI scripts 2018-09-14 11:39:24 -04:00
Cargo.lock Update to gfx-hal 0.2 2019-05-13 11:07:28 -04:00
Cargo.toml Remove Rust wrapper and examples 2019-05-10 20:40:42 -04:00
CHANGELOG.md Update changelog and versions 2019-03-31 20:04:39 -04:00
LICENSE Initial commit 2018-09-13 15:18:51 -04:00
Makefile Debug labels 2019-05-14 12:49:10 -04:00
README.md Document how to run example in readme 2019-05-13 21:47:36 +10:00
rustfmt.toml Merge '.rustfmt.toml' into 'rustfmt.toml' 2019-05-01 23:06:36 +05:30

This is an active Github mirror of the WebGPU native implementation in Rust, which now lives in Mozilla-central. Issues and pull requests are accepted, but we merge them in m-c manually and then sync to Github instead of landing directly here.


WebGPU

Build Status Crates.io Gitter

This is an experimental WebGPU implementation as a native static library. It's written in Rust and is based on gfx-hal and Rendy libraries. The corresponding WebIDL specification can be found at gpuweb project.

The implementation consists of the following parts:

  1. wgpu-native - the native implementation of WebGPU as a C API library
  2. wgpu-remote - remoting layer to work with WebGPU across the process boundary
  3. ffi - the C headers generated by cbindgen for both of the libraries

Supported platforms:

  • Vulkan on Windows and Linux
  • D3D12 and D3D11 on Windows
  • Metal on macOS and iOS

Usage

This repository contains C-language examples that link to the native library targets and perform basic rendering and computation. To run the C triangle example, install a C compiler + glfw 3, then run these commands at the root of the repo:

rustup toolchain install nightly
cargo install cbindgen
make examples-native
cd examples/hello_triangle_c/build
./hello_triangle

The idiomatic Rust wrapper lives in https://github.com/gfx-rs/wgpu-rs and provides a number of more complex examples to get a feel of the API.