Skip to content

Commit

Permalink
[WebGPU] Small fix in README
Browse files Browse the repository at this point in the history
  • Loading branch information
chnoblouch committed Jan 15, 2024
1 parent 59e23d2 commit fabfbc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app_demo_webgpu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ link Dawn instead of wgpu-native, but we would have to build and distribute it o

WebGPU follows a stateless design as opposed to OpenGL, where much state has to be set globally before making a
draw call. To use WebGPU, we create objects with a call to wgpu*Create*. This function generally takes the parent
object as a parameter and a WGPU*Descriptor that contains the specification for the object. The returned object
object as a parameter and a WGPUDescriptor that contains the specification for the object. The returned object
is released after usage with a call to wgpuRelease*. An object can have a label that is used when reporting errors.
We can now call functions on the object to interact with them.

Expand Down

0 comments on commit fabfbc5

Please sign in to comment.