web-glitz 0.2.1

Rusty low-level web-graphics library on top of WebGL 2.0.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Pipelines represent GPU configurations for parallel data processing.
//!
//! # Graphics pipelines
//!
//! Graphics pipelines represent GPU configurations that take a vertex stream as their input, and
//! output image data to the framebuffer (see the [rendering] module). Graphics pipelines are
//! currently the only pipeline type supported by WebGlitz. See [graphics] for details.
//!
//! # Pipeline resources
//!
//! Pipeline resources are memory resources that shared by all pipeline invocations. This
//! distinguishes resources from inputs, where each invocation receives separate inputs. See
//! [resources] for details.

pub mod graphics;
pub mod interface_block;
pub mod resources;