1 import hat.types.vec4;
2 import static hat.types.vec4.*;
3 
4 static void main(String[] args) throws IOException {
5     shade.ShaderFrame.of( 1024, 1024, 30, "Blue",
6         (uniforms, FragColor, fragCoord) ->
7            vec4(0f,0f,5f,0f)
8     );
9 }