summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_lines.sc
blob: 50143cf9106e81ca8441bb9d390c84f1d88bfb96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$input a_position, a_color0
$output v_color0

/*
 * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
 * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
 */

#include <bgfx_shader.sh>

void main()
{
	gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
	v_color0 = a_color0;
}