gunkiss/src/flat.vert

20 lines
1.1 KiB
GLSL
Raw Normal View History

/* _______________ +---------------------------------------------------------------------------------------+
//~~~~~~~~~~~~~\\ | a game by @ohsqueezy & @sleepin |
//```````````````\\ | [ohsqueezy.itch.io] [instagram.com/sleepin] |
//_0_0_0_0_0_0_0_0_\\ | |
//_/_/_/_/___\_\_\_\_\\ | with code licensed for copy, modification and redistribution [git.nugget.fun/pudding] |
//GGGUUUNNNKKKIIISSSSSS\\ | |
//_/__/__/__/_\__\__\__\_\\ | 😀 Thank you for choosing Puddendo for your business 😀 |
+---------------------------------------------------------------------------------------+ */
2021-07-02 22:51:59 -04:00
#version 130
2021-09-01 00:08:45 -04:00
in vec2 in_position;
in vec2 vertex_uv;
out vec2 uv;
2021-07-02 22:51:59 -04:00
void main(void)
{
2021-09-01 00:08:45 -04:00
gl_Position = vec4(in_position, 0, 1);
uv = vertex_uv;
2021-07-02 22:51:59 -04:00
}