mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-11 04:51:32 +11:00
18c0da02e5
As stated by the README, the intention is for the shaders to be provided under the terms of the Unlicense in addition to the MIT and Apache-2.0 licenses. While here, add a self-contained UNLICENSE file to replace the external reference to unlicense.org.
12 lines
204 B
WebGPU Shading Language
12 lines
204 B
WebGPU Shading Language
// SPDX-License-Identifier: Apache-2.0 OR MIT OR Unlicense
|
|
|
|
struct Cubic {
|
|
p0: vec2<f32>,
|
|
p1: vec2<f32>,
|
|
p2: vec2<f32>,
|
|
p3: vec2<f32>,
|
|
path_ix: u32,
|
|
// Needed?
|
|
padding: u32,
|
|
}
|