mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-08 20:01:30 +11:00
ff59839737
* Move the vello crate to the root of the crate * Add warning that README is work in progress * Add newline in warning * Move the unlicense into the shader folder * Fixup wgsl-analyzer include paths
9 lines
156 B
WebGPU Shading Language
9 lines
156 B
WebGPU Shading Language
// SPDX-License-Identifier: Apache-2.0 OR MIT OR Unlicense
|
|
|
|
struct Segment {
|
|
origin: vec2<f32>,
|
|
delta: vec2<f32>,
|
|
y_edge: f32,
|
|
next: u32,
|
|
}
|