learn-wgpu/docs
2020-08-09 13:02:21 +09:00
..
.vuepress forgot github link, etc 2020-07-24 15:47:04 -06:00
beginner Minor typo fix "now" -> "know" 2020-08-03 16:52:17 +01:00
intermediate Fix some easy-win lints 2020-08-03 11:44:46 +01:00
news updating to shaderc 2020-05-28 13:47:05 -06:00
showcase Add a comment about TextureFormat for PNG 2020-08-09 13:02:21 +09:00
README.md reorganized project, added challenge impls 2019-11-12 23:52:09 -07:00
todo.md textures 2019-11-05 01:02:41 -07: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. That being said, let's get started!