maplibre 0.0.3

Maps for Desktop, Mobile and Web
Documentation
1
2
3
4
5
6
7
8
struct Output {
    @location(0) out_color: vec4<f32>,
};

@fragment
fn main(@location(0) v_color: vec4<f32>) -> Output {
    return Output(v_color);
}