bgfx/examples/17-drawstress/vs_drawstress.sc

16 lines
314 B
Python
Raw Normal View History

2014-01-19 11:43:16 +04:00
$input a_position, a_color0
$output v_color0
/*
2022-01-15 22:59:06 +03:00
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
2014-01-19 11:43:16 +04:00
*/
#include "../common/common.sh"
void main()
{
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
v_color0 = a_color0;
}