bgfx/examples/common/debugdraw/vs_debugdraw_fill_lit.sc

18 lines
401 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
$output v_view, v_world
/*
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 world = mul(u_model[int(a_indices.x)], vec4(a_position, 1.0) );
gl_Position = mul(u_viewProj, world);
v_view = mul(u_view, world).xyz;
v_world = world.xyz;
2016-02-26 09:20:24 +03:00
}