2016-08-29 22:31:11 +02:00
|
|
|
$input a_position, a_texcoord0, a_color0
|
|
|
|
$output v_texcoord0, v_color0
|
|
|
|
|
|
|
|
/*
|
2018-02-03 17:39:28 +01:00
|
|
|
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
|
2016-08-29 22:31:11 +02:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = mul(u_viewProj, vec4(a_position.xy, 0.0, 1.0) );
|
|
|
|
v_texcoord0 = a_texcoord0;
|
|
|
|
v_color0 = a_color0;
|
|
|
|
}
|