summaryrefslogtreecommitdiff
path: root/source/dw/app/shader/main.vert.glsl
blob: 0ab36c8db33fdbcba4952c61ea83a9019f05a0fd (plain) (blame)
1
2
3
4
5
6
7
8
9
#version 150 core

in vec3 pos;

uniform float scl;

void main(void) {
	gl_Position = vec4(pos.x*scl, pos.y*scl, pos.z*scl, 1.0f);
}