mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 12:42:34 +01:00
17 lines
403 B
Python
17 lines
403 B
Python
$input a_position, i_data0, i_data1, i_data2, i_data3, i_data4
|
|
|
|
/*
|
|
* Copyright 2018 Kostas Anagnostou. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
mat4 model = mtxFromCols(i_data0, i_data1, i_data2, i_data3);
|
|
|
|
vec4 worldPos = mul(model, vec4(a_position, 1.0) );
|
|
gl_Position = mul(u_viewProj, worldPos);
|
|
}
|