~starkingdoms/starkingdoms

ref: 4da4d43fc91d4c7116f9fd4ffda715826215f89d starkingdoms/crates/client/src/shaders/fragment.glsl -rw-r--r-- 124 bytes
4da4d43f — ghostly_zsh well native exists but nothing is drawn 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
precision mediump float;

in vec2 v_pos;

out vec4 color;

void main() {
    color = vec4((v_pos+1.0f)/2.0f, 0.5f, 1.0f);
}