mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-04 20:53:57 +00:00
10 lines
115 B
GLSL
10 lines
115 B
GLSL
#version 450
|
|
|
|
|
|
void main() {
|
|
vec3 x = vec3(2.0);
|
|
x.zxy.xy = vec2(3.0, 4.0);
|
|
x.rg *= 5.0;
|
|
x.zy++;
|
|
}
|