Cross-platform, safe, pure-rust graphics api.
Go to file
bors[bot] c204199dc2 Merge #192
192: add necessary windows lib files for vulkan, dx12, dx11 r=kvark a=Napokue

Introduce new argument BACKEND to specify the back-end framework in the hello_triangle_c CMake script. I will update the other examples, hello_remote_c & hello_compute_c (working on this one) in a future PR.

fix #188 

Co-authored-by: Timo de Kort <dekort.timo@gmail.com>
2019-05-27 14:41:11 +00:00
examples Merge #192 2019-05-27 14:41:11 +00:00
ffi Fix clear value filtering and integer support 2019-05-23 10:03:11 -04:00
wgpu-native Merge #183 2019-05-24 18:58:09 +00:00
wgpu-remote Add gfx-backend-gl support 2019-05-19 15:10:52 -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 Only test building the gfx-backend-gl feature for now 2019-05-24 14:40:19 -04:00
bors.toml CI scripts 2018-09-14 11:39:24 -04:00
Cargo.lock Add gfx-backend-gl support 2019-05-19 15:10:52 -04:00
Cargo.toml Remove Rust wrapper and examples 2019-05-10 20:40:42 -04:00
CHANGELOG.md Fix typos. 2019-05-24 14:46:37 +07:00
LICENSE Initial commit 2018-09-13 15:18:51 -04:00
Makefile resolve PR comments 2019-05-26 18:23:19 +02:00
README.md Fix typos. 2019-05-24 14:46:37 +07: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.