gfx-rs/wgpu

A cross-platform, safe, pure-Rust graphics API.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 4 minutes ago
Added to GitGenius on September 3rd, 2026
Created on September 13th, 2018
Open Issues & Pull Requests: 1,253 (+0)
GitHub issues: Enabled
Number of forks: 1,434
Total Stargazers: 17,956 (+0)
Total Subscribers: 116 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 19.0 hours
Mean response time: 85.7 days
90th percentile: 253.1 days
Tracked items: 1,611

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 57% of open issues come from outside the core team, a mix of external reports and the maintainers' own roadmap. Work labelled "backend: vulkan" is answered fastest, typically in about 20 hours, while "area: validation" waits about 5 days. 53% of tracked open issues have had no activity in three months. Only 3% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 847
New in 7 days: 21
Closed in 7 days: 12
Avg open age: 510 days
Stale 30+ days: 715
Stale 90+ days: 581

Recent activity

Opened in 7 days: 16
Closed in 7 days: 7
Comments in 7 days: 2
Events in 7 days: 12

Top labels

  • type: bug (563)
  • type: enhancement (497)
  • naga (445)
  • area: correctness (230)
  • area: api (196)
  • area: validation (183)
  • help required (167)
  • backend: vulkan (161)

Detailed Description

wgpu is a cross-platform, safe, pure-Rust graphics API that abstracts over native GPU backends.

The tool solves the problem of writing graphics code that runs identically across different platforms and GPU architectures. Rather than forcing developers to write separate code paths for Vulkan, Metal, Direct3D 12, and OpenGL, wgpu provides a unified API based on the WebGPU standard. It translates calls to whichever backend is available on the target platform, running natively on Vulkan, Metal, D3D12, and OpenGL on desktop and Android, and on WebGL2 and WebGPU when compiled to WebAssembly. The library is written entirely in Rust and emphasizes safety, preventing common GPU programming errors at compile time.

Developers should choose wgpu if they need graphics rendering that works across Windows, macOS, Linux, iOS, Android, and the web without maintaining separate rendering pipelines. It suits game engines, graphics applications, and any project requiring portable GPU access. The tool is particularly valuable for projects targeting both native and web platforms, since the same Rust code compiles to both. The README recommends starting with the Learn Wgpu tutorial for those new to the library and graphics programming, and points to WebGPU Fundamentals as a reference for API concepts.

The project receives issue reports from both core maintainers and external users, indicating real-world adoption without an overwhelming support burden. Maintainers typically respond to new issues and pull requests within a day. Work in the issue tracker centers on bug fixes, enhancements, and the Naga shader compiler component.