mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-11 08:04:57 +00:00
10 lines
163 B
WebGPU Shading Language
10 lines
163 B
WebGPU Shading Language
@vertex
|
|
fn main() {
|
|
let f = 1.0;
|
|
let v = vec4<f32>(0.0);
|
|
let a = degrees(f);
|
|
let b = radians(f);
|
|
let c = degrees(v);
|
|
let d = radians(v);
|
|
}
|