2016-08-29 22:31:11 +02:00
|
|
|
$input a_position, a_color0
|
|
|
|
$output v_color0
|
|
|
|
|
|
|
|
/*
|
2017-04-11 08:16:10 +02:00
|
|
|
* Copyright 2011-2017 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2016-08-29 22:31:11 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
|
|
|
|
v_color0 = a_color0;
|
|
|
|
}
|