minwebgpu 0.2.0

Minimal WebGPU toolkit for modern graphics programming with compute shaders and rendering pipelines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Internal namespace.
mod private
{
  // use crate::*;
}

crate::mod_interface!
{
  /// Vertex buffer layout
  layer vertex_buffer;
  /// Vertex Attribute layout
  layer vertex_attribute;
  /// Bind group layout
  layer bind_group;
  /// Pipeline layout
  layer pipeline;
}