bgfx/examples/common/debugdraw/vs_debugdraw_fill_mesh.sc

15 lines
305 B
Python
Raw Normal View History

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