bgfx/examples/common/debugdraw/vs_debugdraw_fill.sc

15 lines
320 B
Python
Raw Normal View History

2016-06-15 08:33:37 +03:00
$input a_position, a_indices
2016-02-26 09:20:24 +03:00
/*
2018-01-01 22:16:06 +03:00
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
2016-02-26 09:20:24 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include <bgfx_shader.sh>
void main()
{
2016-06-15 08:33:37 +03:00
vec4 model = mul(u_model[int(a_indices.x)], vec4(a_position, 1.0) );
gl_Position = mul(u_viewProj, model);
2016-02-26 09:20:24 +03:00
}