Jekyll2023-11-24T20:57:31+00:00https://gfx-rs.github.io/feed.xmlgfx-rs nuts and boltsgfx-rs is a project bringing efficient cross-platform graphics to rust. This blog supposedly hosts the major milestones, concepts, and recaps of the project.Improved Multithreading in wgpu - Arcanization Lands on Trunk2023-11-24T00:00:00+00:002023-11-24T00:00:00+00:00https://gfx-rs.github.io/2023/11/24/arcanization<p>Arcanization is a large refactoring of wgpu’s internals aiming at reducing lock contention, and providing better performance when using <code class="language-plaintext highlighter-rouge">wgpu</code> on multiple threads. It was just merged into wgpu’s <code class="language-plaintext highlighter-rouge">trunk</code> branch and will be published as part of the <code class="language-plaintext highlighter-rouge">0.19</code> release scheduled for around January 17th.</p> <h1 id="a-long-journey">A Long Journey</h1> <p>Before diving into the technical details, let’s have a quick look at the history of this project. The work started some time around mid 2021 with significant involvement from <a href="https://github.com/pythonesque">@pythonesque</a>, <a href="https://github.com/kvark">@kvark</a> and <a href="https://github.com/cwfitzgerald">@cwfitzgerald</a>. It went though multiple revisions, moving from one person to the next, until <a href="https://github.com/gents83">@gents83</a> picked it up and opened a <a href="https://github.com/gfx-rs/wgpu/pull/3626">pull request</a> on March 30th 2023.</p> <p>Fast-forward November 20th, after countless rebases, revisions and fixes by <a href="https://github.com/gents83">@gents83</a> spanning nearly 8 months, the pull request is finally merged! They tirelessly maintained this big and complex refactoring, all while the project was constantly changing and improving underneath them!</p> <h1 id="the-problem">The Problem</h1> <p><code class="language-plaintext highlighter-rouge">wgpu</code> internally stores all resources (buffers, textures, bind groups, etc.) in big contiguous arrays held by what we call the <code class="language-plaintext highlighter-rouge">Hub</code>.</p> <p>Most of the data stored in these arrays is immutable. Once created, it never changes until the resource is destroyed. Inside and outside wgpu, the resources referred to by <code class="language-plaintext highlighter-rouge">Id</code>s which boil down to indices in the resource arrays with metadata.</p> <p><img src="/img/arcanization-before.png" alt="A simplified diagram showing the Hub and resource arrays" /></p> <p>This should play well with parallel access of the data from multiple threads, right? Unfortunately adding and removing resources requires mutable access to these resource arrays. Which meant adding locks. Locks when adding or removing items, but also locks while reading from the data they contain. Locks everywhere, and locks that have to be held for a non-negligible duration. This caused a lot of lock contention and poor performance when <code class="language-plaintext highlighter-rouge">wgpu</code> is used on multiple threads.</p> <p>Interestingly, <code class="language-plaintext highlighter-rouge">wgpu</code> also had to maintain internal reference counts to resources, to keep track of the dependencies between them (for example a bind group depends on the bindings it refers to). This reference counting was carried out manually, and rather error-prone.</p> <h1 id="the-solution">The solution</h1> <p>“Arcanization”, as it names implies, was the process of moving resources behind atomic reference counted pointers (<code class="language-plaintext highlighter-rouge">Arc&lt;T&gt;</code>). Today the <code class="language-plaintext highlighter-rouge">Hub</code> still holds resource arrays, however these contain <code class="language-plaintext highlighter-rouge">Arc</code>s instead of the data directly. This lets us hold the locks for much shorter times - in a lot of cases only while cloning the arc - which can then be read from safely outside of the critical section. In addition, some areas of the code don’t need to hold locks once the reference has been extracted.</p> <p><img src="/img/arcanization-after.png" alt="A simplified diagram showing resources stored via Arcs" /></p> <p>The result is much lower lock contention. If you use <code class="language-plaintext highlighter-rouge">wgpu</code> from multiple threads, this should significantly improve performance. Our friends in the <a href="https://bevyengine.org/">bevy engine</a> community noted that some very early testing (on an older revision of arcanization) showed that with arcanization, the encoding of shadow-related commands can run in parallel with the main passes, yielding 45% frame time reduction on a test scene (the famous bistro scene) compared to their single threaded configuration. Without arcanization, lock contention is too high to significantly improve performance.</p> <p>In addition, <code class="language-plaintext highlighter-rouge">wgpu</code>’s internals are now simpler. This change lifted some restrictions and opens the door for further performance and ergonomics improvements.</p> <h1 id="wgpu-019">wgpu 0.19</h1> <p>The next release featuring this work will be <code class="language-plaintext highlighter-rouge">0.19.0</code> which we expect to publish around January 17th. We made sure to merge the changes early in the release cycle to give ourselves as much time as we can to catch potential regressions.</p> <p>This is an absolutely massive change and while we have and are testing as best we can, we do need help from everyone else. Please try updating your project to the latest wgpu and running it. Please report any issues you find!</p> <h1 id="whats-next">What’s next?</h1> <h2 id="lifting-renderpassa-lifetime-restrictions">Lifting <code class="language-plaintext highlighter-rouge">RenderPass&lt;'a&gt;</code> lifetime restrictions</h2> <p>If you have used <code class="language-plaintext highlighter-rouge">wgpu</code>, there is decent chance that you have had to work around the restrictions imposed by the <code class="language-plaintext highlighter-rouge">'rpass</code> lifetime in a lot of <code class="language-plaintext highlighter-rouge">RenderPass</code>’s methods, such as <code class="language-plaintext highlighter-rouge">set_bind_group</code>, <code class="language-plaintext highlighter-rouge">set_pipeline</code>, and, <code class="language-plaintext highlighter-rouge">set_vertex_buffer</code>. The recent changes give us the opportunity to store <code class="language-plaintext highlighter-rouge">Arc</code>s where <code class="language-plaintext highlighter-rouge">&amp;'a</code> references were previously needed which should let us remove these lifetime restrictions.</p> <h2 id="internal-improvements">Internal improvements</h2> <p>There is ongoing work to ensure that buffer, textures, and devices can be destroyed safely while their handles are still alive. This is important for Firefox which uses <code class="language-plaintext highlighter-rouge">wgpu_core</code> as the basis for its WebGPU implementation. In the garbage-collected environment of javascript, the deallocation of resources is non-deterministic and can happen a long time after the program is done using the resources. While this in itself does not require arcanization, it gives us a better foundation to improve upon internal resource lifetime management.</p> <h2 id="reference-counting-at-the-api-level">Reference counting at the API level</h2> <p>So resources like buffers and textures are now internally reference counted, but the handles <code class="language-plaintext highlighter-rouge">wgpu</code> exposes are not. Could we potentially expose the reference counted resources more directly, avoiding going through the <code class="language-plaintext highlighter-rouge">Hub</code>? Most likely yes. That would be another fairly large project with important implications to <code class="language-plaintext highlighter-rouge">wgpu_core</code>’s recording infrastructure and how it integrates in Firefox. It won’t happen overnight, but that’s certainly something the <code class="language-plaintext highlighter-rouge">wgpu</code> maintainers would like to move towards.</p> <h1 id="closing-words">Closing words</h1> <p>Changes of this scope and complexity take tremendous effort to realize, and take orders of magnitude <em>more</em> effort to push over the finish line. <a href="https://github.com/gents83">@gents83</a>’s achievement here is truly outstanding. He poured an endless amount of time, effort, and patience into this work, which we now all benefit from, and deserves equally endless amounts of recognition for it.</p> <p>Thanks <a href="https://github.com/gents83">@gents83</a>!</p>Arcanization is a large refactoring of wgpu’s internals aiming at reducing lock contention, and providing better performance when using wgpu on multiple threads. It was just merged into wgpu’s trunk branch and will be published as part of the 0.19 release scheduled for around January 17th.Release of wgpu v0.13 and Call for Testing2022-06-30T00:00:00+00:002022-06-30T00:00:00+00:00https://gfx-rs.github.io/2022/06/30/release-0.13<p>The gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/wgpu">wgpu</a> is a portable graphics api. It provides safe, accessible, and portable access to the GPU.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates shader programs between languages, including WGSL. It also provides shader validation and transformation, ensuring user code running on the GPU is safe and efficient.</li> </ul> <p>After a long gap between releases, we have just rolled out v0.13 of wgpu and v0.9 of naga! See <a href="https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md#wgpu-013-2022-06-30">wgpu v0.13 changelog</a> and <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v09-2022-06-30">naga v0.9 changelog</a> for the details and migration guide.</p> <p>While it’s been a long time between releases, we’ve been hard at work improving both wgpu’s implementation and its user facing experience.</p> <h2 id="performance-and-correctness">Performance and Correctness</h2> <p>This release we’ve focused on improving both our performance and correctness. One of our biggest bottlenecks, tracking performance, has been significantly improved and is no longer the biggest bottleneck. There are more performance improvements coming in the near future.</p> <p>There have been many bugs fixed in this release on all backends.</p> <h2 id="naga-improvements">naga Improvements</h2> <p><code class="language-plaintext highlighter-rouge">naga</code>, our shader translator, has improved substantially.</p> <p>All backends and frontends have gotten even more solidly tested with a truly massive amount of bugs being fixed.</p> <p>Additionally <code class="language-plaintext highlighter-rouge">naga</code> now supports the newest rendition of the <code class="language-plaintext highlighter-rouge">wgsl</code> spec, bringing it back inline with other WebGPU projects. See the wgpu changelog for transition details.</p> <h2 id="presentation-and-pipelining">Presentation and Pipelining</h2> <p>We have focused some of our attention on improving the interface for surface managment and presentation. Most importantly we now allow a greater set of presentation modes (Mailbox, Fifo, FifoRelaxed, and Immediate) and have removed implicit fallback over explicit “Automatic” modes which have defined fallback paths (AutoVsync and AutoNoVsync). Additionally, surfaces now expose the full set of texture formats that can be used on them, not just their most preferred format. This should be paving the way for HDR and more explicit color space support.</p> <p>Additionally we have changed <code class="language-plaintext highlighter-rouge">BufferSlice::map_async</code> from returning a future that resolves when the mapping is complete to calling a callback when the mapping is complete. We have received a sizable amount of feedback about how hard the futures based api was to use and how easily it leads to deadlocks or very poor performance. The callback based api makes it more clear what is actually happening under the hood and discourages the usage patterns that caused issues.</p> <h2 id="call-for-testing-dx12">Call for Testing: DX12</h2> <p>For a variety of performance and stability reasons we are looking at making <code class="language-plaintext highlighter-rouge">wgpu</code>’s default backend on windows DX12 instead of vulkan. As part of this push we need people to test their wgpu 0.13 code on the DX12 backend. The easiest way to do this (for testing purposes) is, when you create your instance to pass in DX12 as the only available backend.</p> <div class="language-rust highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">let</span> <span class="n">instance</span> <span class="o">=</span> <span class="nn">wgpu</span><span class="p">::</span><span class="nn">Instance</span><span class="p">::</span><span class="nf">new</span><span class="p">(</span><span class="nn">wgpu</span><span class="p">::</span><span class="nn">Backends</span><span class="p">::</span><span class="n">DX12</span><span class="p">);</span> </code></pre></div></div> <p>If you find any inconsistencies, bugs, or crashes with this, please file a bug report!</p> <p>For more information on this change, please see the tracking issue: <a href="https://github.com/gfx-rs/wgpu/issues/2719">#2719</a>.</p> <h2 id="release-schedule">Release Schedule</h2> <p>We’ve slipped significantly from our original cadence of a release every 3 to 4 months with this release being nearly 7 months after the last release. As part of the effort to make releases less substantial and easier on both us and our users, we’re going to be attempting to follow a stricter 3 month (90 day) release cadence. This way contributors can be sure their changes get released in a timely fashion and release management easier on us.</p> <h2 id="thank-you">Thank You!</h2> <p>Thanks to the countless contributors that helped out with this release! <code class="language-plaintext highlighter-rouge">wgpu</code> and <code class="language-plaintext highlighter-rouge">naga</code>’s momentum is truly incredible due to everyone’s contributions and we look forward to seeing the amazing places wgpu and naga will go. If you are interested in helping, take a look at our <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22good+first+issue%22">good-first-issues</a>, our issues with <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22help+wanted%22">help wanted</a>, or contact us on our <a href="https://matrix.to/#/#wgpu:matrix.org">matrix chat</a>, we are always willing to help mentor first time and returning contributors.</p> <p>Additionally, thank you to all the users who report new issues, ask for enhancements, or test the git version of wgpu. Keep it coming!</p> <p>Happy rendering!</p>The gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:This Year in Wgpu - 20212021-12-25T00:00:00+00:002021-12-25T00:00:00+00:00https://gfx-rs.github.io/2021/12/25/this-year<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/wgpu">wgpu</a> is built on top of <em>wgpu-hal</em> and <em>naga</em>. It provides safety, accessibility, and portability for graphics applications.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates shader programs between languages, including WGSL. It also provides shader validation and transformation, ensuring user code running on the GPU is safe and efficient.</li> </ul> <p>As 2021 comes to an end, let’s look back at everything that has been accomplished.</p> <p><img src="/img/fredriknoren.jpg" alt="Fredrik Norén's terrain with trees" /></p> <h2 id="wgpu">Wgpu</h2> <p>We moved from gfx-hal to the newly created <em>wgpu-hal</em> and restructured the repository to keep everything together. At the same time, we dropped SPIRV-Cross in favor of <em>naga</em>, reaching the pure-rust tech stack. Read more in the <a href="/2021/08/18/release-0.10.html">0.10 release post</a>. Credit goes to <a href="https://github.com/kvark">@kvark</a>.</p> <p>At the same time, <a href="https://github.com/cwfitzgerald">@cwfitzgerald</a> has revamped our testing infrastructure with Rust integration tests and example snapshots. On top of that, <em>wgpu</em> has tightly <a href="/2021/09/16/deno-webgpu.html">integrated with Deno</a> (thanks to the effort of Deno team!), opening up the road to testing on a real CTS, which is available in CI now.</p> <p>One shiny highlight of the year was the WebGL port, which became practically usable. Getting it ready was truly a collaborative effort, kicked off by <a href="https://github.com/zicklag">@zicklag</a>. Today, <em>wgpu-rs</em> examples can be <a href="https://wgpu.rs/examples-gl/?example=cube">run online</a> with WebGL.</p> <p>In terms of correctness and portability, <a href="https://github.com/Wumpf">@Wumpf</a> landed the titanic work of ensuring all our resources are properly zero-initialized. This has proven to be much more involved than it seems, and now users will get consistent behavior across platforms.</p> <p>Finally, we just released <a href="https://www.reddit.com/r/rust_gamedev/comments/rjci2n/wgpu012_is_released/">version 0.12</a> with the fresh and good stuff!</p> <h2 id="naga">Naga</h2> <p>Naga grew more backends (HLSL, WGSL) and greatly improved support all around the table. It went from an experimental <a href="/2021/02/02/release-0.7.html">prototype in 0.3</a> to production, shipping in Firefox Nightly. It proved to be <a href="/2021/05/09/dota2-msl-compilation.html">4x faster</a> than SPIRV-Cross at SPV-&gt;MSL translation.</p> <p>One notable improvement, led by <a href="https://github.com/JCapucho">@JCapucho</a> with some help from <a href="https://github.com/jimblandy">@jimblandy</a>, is the rewrite of SPIR-V control flow processing. This has been a very problematic and complicated area in past, and now it’s mostly solved.</p> <p>Things have been busy on GLSL frontend as well. It got a completely new parser thanks to <a href="https://github.com/JCapucho">@JCapucho</a>, which made it easier to improve and maintain.</p> <p>Validation grew to cover all the expressions and types and everything. For some time, it was annoying to see rough validation errors without any reference to the source. But <a href="https://github.com/ElectronicRU">@ElectronicRU</a> saved the day by making our errors really nice, similar to how WGSL parser errors were made pretty by <a href="https://github.com/grovesNL">@grovesNL</a> work earlier.</p> <p>Last but not the least, SPIR-V and MSL backends have been bullet-proofed by <a href="https://github.com/jimblandy">@jimblandy</a>. This includes guarding against out-of-bounds accesses on arrays, buffers, and textures.</p> <h2 id="future-work">Future Work</h2> <p>One big project that hasn’t landed is the removal of “hubs”. This is a purely internal change, but a grand one. It would streamline our policy of locking internal data and allow the whole infrastructure to scale better with more elaborate user workloads. We hope to see it coming in 2022.</p> <p>Another missing piece is DX11 backend. We know it’s much needed, and it was the only regression from the <em>wgpu-hal</em> port. This becomes especially important now as Intel stopped supporting DX12 on its Haswell GPUs.</p> <p>Overall, there’s been a lot of good quality contributions, and this list by no means can describe the depth of it. We greatly appreciate all the improvements and would love to shout out about your work at the earliest opportunity. Big thanks for everybody involved!</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:Release of wgpu v0.11 and naga v0.72021-10-07T00:00:00+00:002021-10-07T00:00:00+00:00https://gfx-rs.github.io/2021/10/07/release-0.11<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/wgpu">wgpu</a> is built on top of wgpu-hal and naga. It provides safety, accessibility, and portability for graphics applications.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates shader programs between languages, including WGSL. It also provides shader validation and transformation, ensuring user code running on the GPU is safe and efficient.</li> </ul> <p>Following our release cadence of every few months, we rolled out v0.11 through all of the gfx-rs projects! See <a href="https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md#wgpu-011-2021-10-07">wgpu v0.11 changelog</a> and <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v07-2021-10-07">naga v0.7 changelog</a> for the details.</p> <p>This is our second release using our pure rust graphics stack. We’ve made a significant progress with shader translation and squashed many bugs in both wgpu and the underlying abstraction layer.</p> <h2 id="webgl2">WebGL2</h2> <p>Thanks to the help of @Zicklag for spearheading the work on the WebGL2 backend. Through modifying the use of our OpenGL ES backend, they got WebGL2 working on the web. The backend is still in beta, so please test it out and file bugs! See the <a href="https://github.com/gfx-rs/wgpu/wiki/Running-on-the-Web-with-WebGPU-and-WebGL">guide to running on the web</a> for more information.</p> <p>The following shows one of Bevy’s PBR examples running on the web.</p> <p><img src="/img/bevy-webgl2.png" alt="bevy running on webgl2" /></p> <h2 id="explicit-presentation">Explicit Presentation</h2> <p>A long standing point of confusion when using wgpu was that dropping the surface frame caused presentation. This was confusing and often happened implicitly. With this new version, presentation is now marked explicitly by calling <code class="language-plaintext highlighter-rouge">frame.present()</code>. This makes very clear where the important action of presentation takes place.</p> <h2 id="more-robust-shader-translation">More Robust Shader Translation</h2> <p><code class="language-plaintext highlighter-rouge">naga</code> has made progress on all frontends and backends.</p> <p>The most notable change was that @JCapucho, with the help of @jimb, completely rewrote the parsing of spirv’s control flow. spirv has notably complex control flow which has a large number of complicated edge cases. After multiple reworks, we have settled on this new style of control flow graph parsing. If you input spirv into wgpu, this will mean that even more spirv, especially optimized spirv, will properly validate and convert.</p> <p>See the <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v07-2021-10-07">changelog</a> for all the other awesome editions to naga.</p> <h2 id="thank-you">Thank You!</h2> <p>Thanks to the countless contributors that helped out with this release! <code class="language-plaintext highlighter-rouge">wgpu</code> and <code class="language-plaintext highlighter-rouge">naga</code>’s momentum is truely incredible due to everyone’s contributions and we look forward to seeing the amazing places wgpu and naga will go as projects. If you are interested in helping, take a look at our <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22good+first+issue%22">good-first-issues</a>, our issues with <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22help+wanted%22">help wanted</a>, or contact us on our <a href="https://matrix.to/#/#wgpu:matrix.org">matrix chat</a>, we are always willing to help mentor first time and returning contributors.</p> <p>Additionally, thank you to all the users who report new issues, ask for enhancements, or test the git version of wgpu. Keep it coming!</p> <p>Happy rendering!</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:wgpu alliance with Deno2021-09-16T00:00:00+00:002021-09-16T00:00:00+00:00https://gfx-rs.github.io/2021/09/16/deno-webgpu<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/wgpu">wgpu</a> is built on top of wgpu-hal and naga. It provides safety, accessibility, and portability for graphics applications.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates shader programs between languages, including WGSL. It also provides shader validation and transformation, ensuring user code running on the GPU is safe and efficient.</li> </ul> <p><code class="language-plaintext highlighter-rouge">wgpu</code> works over native APIs, such as Vulkan, D3D12, Metal, and others. This involves a layer of translation to these APIs, which is generally straightforward. It promises safety and portability, so it’s critical for this library to be well tested. To this date, our testing was a mix of unit tests, examples, and a small number of integration tests. Is this going to be enough? Definitely no!</p> <p>Fortunately, <a href="https://gpuweb.github.io/gpuweb/">WebGPU</a> is developed with a proper <a href="https://github.com/gpuweb/cts">Conformance Test Suite</a> (CTS), largely contributed by Google to date. It’s a modern test suite covering all of the API parts: API correctness, validation messages, shader functionality, feature support, etc. The only complication is that it’s written in TypeScript against the web-facing WebGPU API, while <code class="language-plaintext highlighter-rouge">wgpu</code> exposes a Rust API.</p> <h2 id="deno">Deno</h2> <p>We want to be sure that the parts working today will keep working tomorrow, and ideally enforce this in continuous integration, so that offending pull requests are instantly detected. Thus, we were looking for the simplest way to bridge <code class="language-plaintext highlighter-rouge">wgpu</code> with TS-based CTS, and we found it.</p> <p>Back in March <a href="https://www.infoq.com/news/2021/03/deno-1-8-webgpu/">Deno 1.8 shipped</a> with initial WebGPU support, using <code class="language-plaintext highlighter-rouge">wgpu</code> for implementing it. <a href="https://github.com/denoland/deno">Deno</a> is a secure JS/TS runtime written in Rust. Using Rust from Rust is :heart:! Deno team walked the extra mile to hook up the CTS to Deno WebGPU and run it, and they reported first CTS results/issues ever on <code class="language-plaintext highlighter-rouge">wgpu</code>.</p> <p>Thanks to Deno’s modular architecture, the WebGPU implementation is one of the pluggable components. We figured that it can live right inside <code class="language-plaintext highlighter-rouge">wgpu</code> repository, together with the CTS harness. This way, our team has full control of the plugin, and can update the JS bindings together with the API changes we bring from the spec.</p> <p>Today, WebGPU CTS is fully hooked up to <code class="language-plaintext highlighter-rouge">wgpu</code> CI. We are able to <a href="https://github.com/gfx-rs/wgpu/runs/3606626618?check_suite_focus=true">run the white-listed tests</a> by the virtue of adding “needs testing” tag to any PR. We are looking to expand the list of passing tests and eventually cover the full CTS. The GPU tests actually run on github CI, using D3D12’s WARP software adapter. In the future, we’ll enable Linux testing with lavapipe for Vulkan and llvmpipe for GLES as well. We are also dreaming of a way to run daemons on our working (and idle) machines that would pull revisions and run the test suite on real GPUs. Please reach out if you are interested in helping with any of this :wink:.</p> <p>Note that Gecko is also going to be running WebGPU CTS on its testing infrastructure, independently. The expectation is that Gecko’s runs will not show any failures on tests enabled on our CI based on Deno, unless the failures are related to Gecko-specific code, thus making the process of updating <code class="language-plaintext highlighter-rouge">wgpu</code> in Gecko painless.</p> <p>We love the work Deno is doing, and greatly appreciate the contribution to <code class="language-plaintext highlighter-rouge">wgpu</code> infrastructure and ecosystem! Special thanks to <a href="https://lcas.dev/">Luca Casonato</a> and <a href="https://github.com/crowlKats">Leo K</a> for leading the effort :medal_military:.</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:Release of a Pure-Rust v0.10 and a Call For Testing2021-08-18T00:00:00+00:002021-08-18T00:00:00+00:00https://gfx-rs.github.io/2021/08/18/release-0.10<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/wgpu">wgpu</a> is built on top of wgpu-hal and naga. It provides safety, accessibility, and portability for graphics applications.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates shader programs between languages, including WGSL. It also provides shader validation and transformation, ensuring user code running on the GPU is safe and efficient.</li> </ul> <p>If you’ve been following these releases you’ll notice that gfx-hal is absent from this list. gfx-hal has now been deprecated in favor of a new abstraction layer inside of <code class="language-plaintext highlighter-rouge">wgpu</code> called <code class="language-plaintext highlighter-rouge">wgpu-hal</code>. To see more information about the deprecation, see the <a href="/2021/07/16/release-0.9-future.html">0.9 release</a> post.</p> <p>Following our release cadence every few months, we rolled out 0.10 through all of the gfx-rs projects! See <a href="https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md#v010-2021-08-18">wgpu v0.10 changelog</a> and <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v06-2021-08-18">naga v0.6 changelog</a> for the details.</p> <h2 id="pure-rust-graphics">Pure-Rust Graphics</h2> <p><code class="language-plaintext highlighter-rouge">wgpu</code> has had many new changes, the most notible of which is the switch to our new Hardware Abstraction Layer <code class="language-plaintext highlighter-rouge">wgpu-hal</code>. This includes completely rebuilt backends which are more efficient, easier to maintain, and signifigantly leaner. As part of this, we have shed our last C/C++ dependency <code class="language-plaintext highlighter-rouge">spirv-cross</code>. We now are entirely based on <code class="language-plaintext highlighter-rouge">naga</code> for all of our shader translation. This is not only a marked achievement for rust graphics, but has made wgpu safer and more robust.</p> <p>The new <code class="language-plaintext highlighter-rouge">wgpu-hal</code>:</p> <ul> <li>Supports Vulkan, D3D12, Metal, and OpenGL ES with D3D11 to come soon.</li> <li>Has 60% fewer lines of code than gfx-hal (22k LOC vs 55k)</li> <li>Maps better to the wide variety of backends we need to support.</li> </ul> <p>Other notable changes within wgpu:</p> <ul> <li>Many api improvements and bug fixes.</li> <li>New automated testing infrastructure.</li> </ul> <p><code class="language-plaintext highlighter-rouge">naga</code> has continued to matured significantly since the last release:</p> <ul> <li><code class="language-plaintext highlighter-rouge">hlsl</code> output is now supported and working well.</li> <li><code class="language-plaintext highlighter-rouge">wgsl</code> parsing has had numerous bugs fixed.</li> <li><code class="language-plaintext highlighter-rouge">spirv</code> parsing support continues to be very difficult but improving steadily.</li> <li>With <code class="language-plaintext highlighter-rouge">wgpu-hal</code> now dependending on naga, all code paths have gotten signifigant testing.</li> <li>Validation has gotten more complete and correct.</li> </ul> <h2 id="call-for-testing">Call For Testing</h2> <p>This is an extremely big release for us. While we have confidence in our code and we have tested it extensively, we need everyone’s help in testing this new release! As such we ask if people can update to the latest wgpu and report to us any problems or issues you face.</p> <p>If you aren’t sure if something is an issue, feel free to hop on our <a href="https://matrix.to/#/#wgpu:matrix.org">matrix chat</a> to discuss.</p> <h2 id="thank-you">Thank You!</h2> <p>Thanks to the countless contributors that helped out with this massive release! <code class="language-plaintext highlighter-rouge">wgpu</code>’s momentum is truely incredible due to everyone’s contributions and we look forward to seeing the amazing places wgpu will go as a project. If you are interested in helping, take a look at our <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22good+first+issue%22">good-first-issues</a>, our issues with <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22help+wanted%22">help wanted</a>, or contact us on our <a href="https://matrix.to/#/#wgpu:matrix.org">matrix chat</a>, we are always willing to help mentor first time and returning contributors.</p> <p>Additionally, thank you to all the users who report new issues, ask for enhancements, or test the git version of wgpu. Keep it coming!</p> <p>Happy rendering!</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our main projects are:Release of v0.9 and the Future of wgpu2021-07-16T00:00:00+00:002021-07-16T00:00:00+00:00https://gfx-rs.github.io/2021/07/16/release-0.9-future<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our current main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/gfx">gfx-rs</a> makes low-level GPU programming portable with low overhead. It’s a single Vulkan-like Rust API with multiple backends that implement it: Direct3D 12/11, Metal, Vulkan, and even OpenGL ES.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates the shaders between languages, including WGSL. Also provides validation and processing facilities on the intermediate representation.</li> <li><a href="https://github.com/gfx-rs/wgpu">wgpu</a> is built on top of gfx-rs and <a href="https://github.com/zakarumych/gpu-alloc">gpu-alloc</a>/<a href="https://github.com/zakarumych/gpu-descriptor">gpu-descriptor</a>. It provides safety, accessibility, and strong portability of applications.</li> </ul> <p>Following our release cadence every few months, we rolled out the 0.9 version through all of the gfx projects! See <a href="https://github.com/gfx-rs/gfx/blob/master/CHANGELOG.md#hal-090-18-06-2021">gfx-rs changelog</a>, <a href="https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md#v09-2021-06-18">wgpu changelog</a>, and <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v05-2021-06-18">naga changelog</a> for the details.</p> <p><code class="language-plaintext highlighter-rouge">naga</code> has matured significantly since the last release.</p> <ul> <li><code class="language-plaintext highlighter-rouge">wgsl</code> parsing has improved incredibly, targeting an up-to-date spec.</li> <li><code class="language-plaintext highlighter-rouge">spirv</code> parsing support has had numerous bugs fixed.</li> <li><code class="language-plaintext highlighter-rouge">glsl</code> support is starting to take shape, though still in an alpha state.</li> <li>Validation has gotten more complete and correct.</li> </ul> <p><code class="language-plaintext highlighter-rouge">wgpu</code> validation has continued to improve. Many validation holes were plugged with the last release. Through the combined work in <code class="language-plaintext highlighter-rouge">wgpu</code> and <code class="language-plaintext highlighter-rouge">naga</code>, validation holes have been sured up, and new features have been implemented. One such feature is getting the array length of runtime-sized arrays, which is now properly implemented on metal.</p> <p><code class="language-plaintext highlighter-rouge">wgpu</code> performance is still a vital target for us, so we have done work on improving the overhead of resource tracking. We’ve reduced unnecessary overhead through only doing stateful tracking for resources that have complex states. These changes were made from benchmarks of Gecko’s WebGPU implementation which showed that tracking was a bottleneck. You can read more about it <a href="https://github.com/gfx-rs/wgpu/issues/1413">#1413</a>.</p> <h2 id="wgpu-family-reunion-relicense-and-the-future">wgpu Family Reunion, Relicense, and the Future</h2> <p><code class="language-plaintext highlighter-rouge">wgpu</code> has had a number of large internal changes which are laying the future for wgpu to be a safe, efficient, and portable api for doing cross-platform graphics.</p> <p><code class="language-plaintext highlighter-rouge">wgpu</code> has been relicensed from <code class="language-plaintext highlighter-rouge">MPL-2.0</code> to <code class="language-plaintext highlighter-rouge">MIT/Apache-2.0</code>. Thank you to all 142 people who replied to the issue and made this happen. This relicense is an important change because it allows the possibility of adding backends targeting APIs which are behind NDAs.</p> <p>For a while, we acknowledged that having different essential parts of the project living in different repositories was hurting developers productivity. There were objective reasons for this, but the time has come to change that. Feedback from our friends at the <a href="https://bevyengine.org/">Bevy game engine</a> gave us the final push and we launched an initiative to make wgpu easier to contribute to. We moved wgpu-rs back into the <code class="language-plaintext highlighter-rouge">wgpu</code> repo. This means that PRs that touch both the core crate and the rust bindings no longer need multiple PRs that need to be synchronized. We have already heard from collaborators how much easier the contribution is now that there is less coordination to do. <a href="https://github.com/gfx-rs/wgpu/milestone/9?closed=1">Read more about the family reunion</a>.</p> <p>As a part of our family reunion, <code class="language-plaintext highlighter-rouge">0.9</code> is going to be the last release that will use <code class="language-plaintext highlighter-rouge">gfx-hal</code> as its hardware abstraction layer. While it has served us well, it has proved to not be at the exact level of abstraction we need. We have started work on a new abstraction layer called <code class="language-plaintext highlighter-rouge">wgpu-hal</code>. This new abstraction has already had Vulkan, Metal, and GLES ported, with DX12 landed in an incomplete state, and DX11 to come soon. To learn more about this transition, <a href="https://github.com/gfx-rs/gfx/discussions/3768">you can read the whole discussion</a>.</p> <p>Finally, we have brand new testing infrastructure that allows us to automatically test across all backends and all adapters in the system. Included in our tests are image comparison tests for all of our examples and the beginnings of feature tests. We hope to expand this to cover a wide variety of features and use cases. We will be able to run these tests in CI on software adapters and our future goal is to setting up a distributed testing network so that we can automatically test on a wide range of adapters. This will be one important layer of our in-depth defences, ensuring that wgpu is actually portable and safe. Numerous bugs have already been caught by this new infrastructure thus far and it will help us prevent regressions in the future. <a href="https://github.com/gfx-rs/wgpu/discussions/1611">Read more about our testing infrastructure</a>.</p> <h2 id="thank-you">Thank You!</h2> <p>Thank you for the countless contributors that helped out with this release! <code class="language-plaintext highlighter-rouge">wgpu</code>’s momentum is only increasing due to everyone’s contributions and we look forward to seeing the amazing places wgpu will go as a project. If you are interested in helping, take a look at our <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22good+first+issue%22">good-first-issues</a>, our issues with <a href="https://github.com/gfx-rs/wgpu/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22help+wanted%22">help wanted</a>, or contact us on our <a href="https://matrix.to/#/#wgpu:matrix.org">matrix chat</a>, we are always willing to help mentor first time and returning contributors.</p> <p>Additionally, thank you to all the users who report new issues, ask for enhancements, or test the git version of wgpu. Keep it coming!</p> <p>Happy rendering!</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. Our current main projects are:Shader translation benchmark on Dota2/Metal2021-05-09T00:00:00+00:002021-05-09T00:00:00+00:00https://gfx-rs.github.io/2021/05/09/dota2-msl-compilation<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. See <a href="https://gfx-rs.github.io/2020/11/16/big-picture.html">The Big Picture</a> for the overview, and <a href="https://gfx-rs.github.io/2021/04/30/release-0.8.html">release-0.8</a> for the latest progress. In this post, we are going to share the first performance metrics of our new pure-Rust shader translation library <a href="https://github.com/gfx-rs/naga">Naga</a>, which is integrated into <a href="https://github.com/gfx-rs/gfx">gfx-rs</a>. Check the <a href="https://gfx-rs.github.io/2019/07/13/javelin.html">Javelin announcement</a>, which was the original name of this project, for the background.</p> <p><a href="https://github.com/gfx-rs/portability">gfx-portability</a> is a <a href="https://www.khronos.org/blog/fighting-fragmentation-vulkan-portability-extension-released-implementations-shipping">Vulkan Portability</a> implementation in Rust, based on gfx-rs. Previous <a href="https://gfx-rs.github.io/2018/08/10/dota2-macos-performance.html">Dota2 benchmarks</a> showed good potential in our implementation. However, it couldn’t be truly called <a href="https://gfx-rs.github.io/2018/04/09/vulkan-portability.html">an alternative</a> to <a href="https://github.com/KhronosGroup/MoltenVK">MoltenVK</a> if it relies on <a href="https://github.com/KhronosGroup/SPIRV-Cross">SPIRV-Cross</a>. Today, we are able to run Dota2 with a purely rust Vulkan Portability implementation, thanks to Naga.</p> <h2 id="test">Test</h2> <p>Testing was done on MacBook Pro (13-inch, 2016), which has a humble dual-core Intel CPU running at 3.3GHz. We created an alias to <code class="language-plaintext highlighter-rouge">libMoltenVK.dylib</code> and pointed <code class="language-plaintext highlighter-rouge">DYLD_LIBRARY_PATH</code> to it for Dota2 to pick up on boot, thus running on gfx-portability. It was build from <a href="https://github.com/gfx-rs/portability/tree/naga-bench-dota">naga-bench-dota</a> tag in release. The SPIRV-Cross path was enabled by uncommenting <code class="language-plaintext highlighter-rouge">features = ["cross"]</code> line in <code class="language-plaintext highlighter-rouge">libportability-gfx/Cargo.toml</code>.</p> <p>In-game steps:</p> <ol> <li>launch <code class="language-plaintext highlighter-rouge">make dota-release</code></li> <li>skip the intro videos</li> <li>proceed to “Heroes” menu</li> <li>select “Tide Hunter”</li> <li>and click on “Demo Hero”</li> <li>walk the center lane, enable the 2nd and 3rd abilities</li> <li>use the 3rd ability, then quit</li> </ol> <p><img src="/img/dota-naga-hero.jpg" alt="Hero selection screen with Naga (low settings)" /></p> <p>The point of this short run is to get a bulk of shaders loaded (about 600 graphics pipelines). We are only interested in the CPU cost for loading shaders and creating pipelines. This isn’t a test for the GPU time executing the shaders. The only fact about GPU that matters here is that the picture looks identical. We don’t expect any architectural changes for potential visual issues to be discovered.</p> <p>Times were collected using <a href="https://github.com/aclysma/profiling">profiling</a> instrumentation, which is integrated into gfx-backend-metal. We added this as a temporary dependency to gfx-portability with “profile-with-tracy” feature enabled in order to capture the times in <a href="https://github.com/wolfpld/tracy">Tracy</a>.</p> <p>In tracy profiles, we’d find the relevant chunks and click on the “Statistics” for them. We are interested in the mean (μ) time and the standard deviation (σ).</p> <h2 id="results">Results</h2> <table> <thead> <tr> <th>Function</th> <th>Cross μ</th> <th>Cross σ</th> <th>Naga μ</th> <th>Naga σ</th> </tr> </thead> <tbody> <tr> <td>SPIR-V parsing</td> <td>0.34ms</td> <td>0.15ms</td> <td>0.45ms</td> <td>0.50ms</td> </tr> <tr> <td>MSL generation</td> <td>3.94ms</td> <td>3.5ms</td> <td>0.56ms</td> <td>0.38ms</td> </tr> <tr> <td>Total per stage</td> <td><strong>4.27ms</strong></td> <td> </td> <td><strong>1.01ms</strong></td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td><code class="language-plaintext highlighter-rouge">create_shader_module</code></td> <td>0.005ms</td> <td>0.01ms</td> <td>0.53ms</td> <td>0.57ms</td> </tr> <tr> <td><code class="language-plaintext highlighter-rouge">create_shader_library</code></td> <td>5.19ms</td> <td>6.19ms</td> <td>0.89ms</td> <td>1.23ms</td> </tr> <tr> <td><code class="language-plaintext highlighter-rouge">create_graphics_pipeline</code></td> <td>10.94ms</td> <td>12.05ms</td> <td>2.24ms</td> <td>5.13ms</td> </tr> </tbody> </table> <p>The results are split in 2 groups: one for the time spent purely in the shader translation code of SPIRV-Cross (or just “Cross”) and Naga. And the other group shows combined times of the translation + Metal runtime doing its part. The latter very much depends on the driver caches of the shaders, which we don’t have any control of. We made sure to run the same test multiple times, and only take the last result, giving the opportunity for caches to warm up. Interestingly, the number of outliers (shaders that ended up missing the cache) was still higher in the “Cross” path. This may be just noise, or improperly warmed up caches, but there is a chance it’s also indicative of the fact “Cross” generates more of different shaders, and/or being non-deterministic.</p> <p>The total time spent in shader module or pipeline creation is <strong>7s</strong> with Cross path and just <strong>1.29s</strong> with Naga. So we basically shaved 6 seconds off the user (single-core) time just to get into the game.</p> <p>In neither case there was any pipeline caching involved. One could argue that pipeline caches, when loaded from disk, would essentially solve this problem, regardless of the translation times. We have the support for caching implemented for Naga path, and we don’t want to make it unfair to Cross, so we excluded the caches from the benchmark. We will definitely include them in any full games runs of gfx-portability versus MoltenVK in the future.</p> <h2 id="conclusions">Conclusions</h2> <p>This benchmark shows Naga being roughly <strong>4x</strong> faster than SPIRV-Cross in shader translation from SPIR-V to MSL. It’s still early days for Naga, and we want to optimize the SPIR-V control-flow graph processing, which can be seen in the numbers taking time. We assume SPIRV-Cross also has a lot of low-hanging fruits to optimize, and are looking forward to see its situation improving.</p> <p>Previously, we heard <a href="https://www.reddit.com/r/rust/comments/n1uidm/gfxrs_ecosystem_releases_v08/gwg1uym/">multiple</a> <a href="https://github.com/gfx-rs/gfx/issues/3030">requests</a> to allow MSL generation to happen off-line. We are hoping that the lightning fast translation times (1ms per stage) coupled with pipeline caching would resolve this need.</p> <p>The quality and read-ability of generated MSL code in Naga is improving, but it’s still not at the level of SPIRV-Cross results. It also doesn’t have the same feature coverage. We are constantly adding new things in Naga, such as interpolation qualifiers, atomics, etc.</p> <p>Finally, Naga is architectured for shader module re-use. It does a lot of work up-front, and can produce target-specific shaders quickly, so it works best when there are many pipelines created using fewer shader modules. Dota2’s ratio appears to be 2 pipelines per 1 shader module. We expect that applications using multiple entry points in SPIR-V modules, or creating more variations of pipeline states, would see even bigger gains.</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. See The Big Picture for the overview, and release-0.8 for the latest progress. In this post, we are going to share the first performance metrics of our new pure-Rust shader translation library Naga, which is integrated into gfx-rs. Check the Javelin announcement, which was the original name of this project, for the background.Release of v0.82021-04-30T00:00:00+00:002021-04-30T00:00:00+00:00https://gfx-rs.github.io/2021/04/30/release-0.8<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. The main projects are:</p> <ul> <li><a href="https://github.com/gfx-rs/gfx">gfx-rs</a> makes low-level GPU programming portable with low overhead. It’s a single Vulkan-like Rust API with multiple backends that implement it: Direct3D 12/11, Metal, Vulkan, and even OpenGL ES.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates the shaders between languages, including WGSL. Also provides validation and processing facilities on the intermediate representation.</li> <li><a href="https://github.com/gfx-rs/wgpu-rs">wgpu-rs</a> is built on top of gfx-rs and <a href="https://github.com/zakarumych/gpu-alloc">gpu-alloc</a>/<a href="https://github.com/zakarumych/gpu-descriptor">gpu-descriptor</a>. It provides safety, accessibility, and strong portability of applications.</li> </ul> <p>Following the regular schedule of releasing once in a few month, we just rolled out 0.8 versions across gfx/wgpu projects! See <a href="https://github.com/gfx-rs/gfx/blob/master/CHANGELOG.md#hal-080-29-04-2021">gfx-rs changelist</a>, <a href="https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md#v08-2021-04-29">wgpu changelist</a>, and <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v04-2021-04-29">naga changelist</a> for the details.</p> <p><img src="/img/wgpu-ashpill-tree.jpg" alt="tree" /></p> <p>Naga-based shader infrastructure has been growing and capturing more ground. It has reached an important point where SPIRV-Cross is not just optional on some platforms, but even not enabled by default. This is now the case for Metal and OpenGL backends. Naga path is easier to integrate, share types with, compile, and it’s much faster to run. Early <a href="https://github.com/gfx-rs/wgpu-rs/discussions/879">benchmarks</a> suggest about 2.5x perf improvement over SPIRV-Cross for us.</p> <p>The work on HLSL and WGSL backends is underway. The former will allow us to deprecate SPIRV-Cross on Direct3D 12/11 and eventually remove this C dependency. The latter will help users port the existing shaders to WGSL.</p> <p>Another big theme of the release is enhanced <code class="language-plaintext highlighter-rouge">wgpu</code> validation. The host API side is mostly covered, with occasional small holes discovered by testing. The shader side is now validating both statements and expressions. Programming shaders with <code class="language-plaintext highlighter-rouge">wgpu</code> starts getting closer to Rust than C: most of the time you fight the validator to pass, and then it just works, portably. The error messages are still a bit cryptic though, hopefully we’ll improve it in the next release. Hitting a driver panic/crash becomes rare, and we are working on eliminating these outcomes entirely. In addition, <code class="language-plaintext highlighter-rouge">wgpu</code> now knows when to zero-initialize buffers automatically, bringing the strong portability story a bit closer to reality.</p> <p>We also integrated <a href="https://github.com/aclysma/profiling">profiling</a> into <code class="language-plaintext highlighter-rouge">wgpu</code> and <code class="language-plaintext highlighter-rouge">gfx-backend-metal</code>. The author was receptive to our needs and ideas, and we are very happy with the results so far. Gathering CPU performance profiles from your applications today can’t be any simpler:</p> <p><img src="/img/vangers-profiling.png" alt="profiling" /></p> <p>In Naga internals, the main internal improvement was about establishing an association of expressions to statements. It allows backends to know exactly if expression results can be re-used, and when they need to be evaluated. Overall, the boundary between statements and expressions became well defined and easy to understand. We also converged to a model, at high level, where the intermediate representation is compact, but there is a bag of derived information. It is produced by the validator, and is required for backends to function. Finally, entry points are real functions now: they can accept parameters from the previous pipeline stages and return results.</p> <p>Finally, we added a few experimental graphics features for <code class="language-plaintext highlighter-rouge">wgpu</code> on native-only:</p> <ul> <li>Buffer descriptor indexing</li> <li>Conservative rasterization</li> </ul> <p>P.S. overall, we are in the middle of a grand project that builds the modern graphics infrastructure in pure Rust, and we appreciate anybody willing to join the fight!</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. The main projects are:Release of v0.72021-02-02T00:00:00+00:002021-02-02T00:00:00+00:00https://gfx-rs.github.io/2021/02/02/release-0.7<p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. It governs a wide range of projects:</p> <ul> <li><a href="https://github.com/gfx-rs/gfx">gfx-rs</a> makes low-level GPU programming portable with low overhead. It’s a single Vulkan-like Rust API with multiple backends that implement it: Direct3D 12/11, Metal, Vulkan, and even OpenGL.</li> <li><a href="https://github.com/gfx-rs/naga">naga</a> translates the shaders between languages, including WGSL. Also provides validation and processing facilities on the intermediate representation.</li> <li><a href="https://github.com/gfx-rs/wgpu-rs">wgpu-rs</a> is built on top of gfx-rs and gfx-extras. It provides safety, accessibility, and even stronger portability of applications.</li> <li><a href="https://github.com/gfx-rs/metal-rs">metal-rs</a> and <a href="https://github.com/gfx-rs/d3d12-rs">d3d12-rs</a> wrap native graphics APIs on macOS and Windows 10 in Rust.</li> </ul> <p>Today, we are happy to announce the release of 0.7 versions across gfx/wgpu projects!</p> <h2 id="gfx-hal-07">gfx-hal-0.7</h2> <p>Overall theme of this release is simplification. We cut off a lot of experimental cruft that accumulated over the years, cleaned up the dependencies, and upgraded the API to be more modern.</p> <p>For example, last <a href="http://gfx-rs.github.io/2020/04/21/wgpu-web.html">release</a> we made a step towards more generic bounds with <code class="language-plaintext highlighter-rouge">ExactSizeIterator</code> on our APIs. In this release, we are taking two steps back by removing not just <code class="language-plaintext highlighter-rouge">ExactSizeIterator</code>, but also <code class="language-plaintext highlighter-rouge">Borrow</code> from the iterator API. We figured a way to do the stack allocation without extra bounds, using <a href="https://docs.rs/inplace_it/0.3.3/inplace_it/">inplace_it</a>.</p> <p>Having two distinct swapchain models has also come to an end. We removed the old Vulkan-like model, but also upgraded the new model to match “VK_KHR_imageless_framebuffer”, getting the best of both worlds. It maps to the backends even better than before, and we can expose it directly in <a href="https://github.com/gfx-rs/portability">gfx-portability</a> now.</p> <p>There is also a lot of API fixes and improvements, one particularly interesting one is aligning to Vulkan’s “external synchronization” requirements. This allows us to do less locking in the backends, making them more efficient.</p> <p>Another highlight of the show is the OpenGL ES backend. It’s finally taking off based on EGL context and window system integration. There is still a lot of work to do on the logic, but the API is finally aligned to the rest of the backends (see <a href="https://github.com/gfx-rs/gfx/issues/1619">3.5 year old issue</a>). We are targeting Linux/Android GLES3 and WebGL2 only.</p> <p>See the full <a href="https://github.com/gfx-rs/gfx/blob/master/CHANGELOG.md#hal-070-30-01-20210">changelog</a> for details.</p> <h2 id="wgpu-07">wgpu-0.7</h2> <p><img src="/img/wgpu-spaceship.png" alt="spaceship" /> <img src="/img/wgpu-cheese.png" alt="cheese" /></p> <p>The list of <a href="https://github.com/gfx-rs/wgpu-rs/wiki/Applications-and-Libraries">libraries and applications</a> has grown solidly since the last release. A lot of exciting projects and creative people joined our community.</p> <p>Our goals were to bring the API closer to the stable point and improve validation. There is quite a bit of API changes, in particular with the pipeline descriptors and bind group layouts, but nothing architectural. We also got much nicer validation errors now, hopefully allowing users to iterate without always being confused :)</p> <p>The highlight of <code class="language-plaintext highlighter-rouge">wgpu</code> work is support for <a href="https://gpuweb.github.io/gpuweb/wgsl.html">WGSL</a> shaders. It’s the emerging new shading language developed by WebGPU group, designed to be modern, safe, and writable by hands. Most of our examples are already using the new shaders, check <a href="https://github.com/gfx-rs/wgpu-rs/tree/f891e86e87f0733f04a8078f4be8ead2f24551cf/examples">them out</a>! We are excited to finally be able to throw the C dependencies (<a href="https://github.com/grovesNL/spirv_cross">spirv-cross</a>, <a href="https://crates.io/crates/shaderc-sys">shaderc</a>, etc) out of our projects, and build and deploy more easily.</p> <p>See the <a href="https://github.com/gfx-rs/wgpu/blob/master/CHANGELOG.md#v07-2021-01-31">core changelog</a> and the <a href="https://github.com/gfx-rs/wgpu-rs/blob/master/CHANGELOG.md#v07-2021-01-31">rust API changelog</a> for details.</p> <h2 id="naga-03">naga-0.3</h2> <p>Naga has seen intensive development in all areas. SPIR-V frontend and backend, WGSL frontent, GLSL frontent and backend, intermediate layer, validation - all got a lot of improvements. It’s still not fully robust, but Naga has crossed the threshold of being actually usable, and we are taking advantage of it in <a href="https://github.com/gfx-rs/wgpu-rs">wgpu-rs</a>.</p> <p>We experimented on the testing infrastructure and settled on <a href="https://crates.io/crates/cargo-insta">cargo-insta</a>. This boosted our ability to detect regressions, and allowed us to move forward more boldly.</p> <p>The next steps for us are completing the validation, adding out-of-bounds checks, and replacing <a href="https://github.com/KhronosGroup/SPIRV-Cross">SPIRV-Cross</a> completely in applications that have known shaders.</p> <p>See the <a href="https://github.com/gfx-rs/naga/blob/master/CHANGELOG.md#v03-2021-01-30">changelog</a> for details.</p> <p>P.S. overall, we are in the middle of a grand project that builds the modern graphics infrastructure in pure Rust, and we’d appreciate anybody willing to join the fight!</p>gfx-rs community’s goal is to make graphics programming in Rust easy, fast, and reliable. It governs a wide range of projects: