mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
22 lines
519 B
Python
22 lines
519 B
Python
$input a_position, a_color0, i_data0, i_data1, i_data2, i_data3, i_data4
|
|
$output v_color0
|
|
|
|
/*
|
|
* Copyright 2011-2012 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
mat4 model;
|
|
model[0] = i_data0;
|
|
model[1] = i_data1;
|
|
model[2] = i_data2;
|
|
model[3] = i_data3;
|
|
|
|
vec4 worldPos = instMul(model, vec4(a_position, 1.0) );
|
|
gl_Position = mul(u_viewProj, worldPos);
|
|
v_color0 = a_color0*i_data4;
|
|
}
|