2022-09-19 18:05:01 +08:00

5 lines
124 B
Bash

//星空着色器
precision mediump float;
void main(){
gl_FragColor = vec4(1.0,1.0,1.0,1.0); //给此片元颜色值
}