// SPDX-License-Identifier: Apache-2.0 OR MIT OR Unlicense struct Cubic { p0: vec2, p1: vec2, p2: vec2, p3: vec2, stroke: vec2, path_ix: u32, flags: u32, } const CUBIC_IS_STROKE = 1u;