mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-04 20:53:57 +00:00
10 lines
117 B
GLSL
10 lines
117 B
GLSL
// AUTHOR: JCapucho
|
|
// ISSUE: #901
|
|
// FIX: #948
|
|
#version 450
|
|
|
|
void main() {
|
|
vec4 a = vec4(1.0);
|
|
a.x = 2.0;
|
|
}
|