aboutsummaryrefslogtreecommitdiffstats
path: root/vert.glsl
blob: 1730d35b64bedb3e1f824b8c7e58315a08e4e95d (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
// SPDX-License-Identifier: MIT
#version 330 core
layout (location = 0) in vec3 pos;

void main()
{
	gl_Position = vec4(pos, 1.0);
}