1// Copyright (c) 2015 Sergio Gonzalez. All rights reserved.
2// License: https://github.com/serge-rgb/milton#license
3
4in vec2 a_position;
5
6void
7main()
8{
9    gl_Position = vec4(a_position, 0, 1);
10}
11