bgfx/examples/18-ibl/vs_ibl_mesh.sc

21 lines
480 B
Python
Raw Normal View History

2014-02-13 23:46:34 -05:00
$input a_position, a_normal
$output v_view, v_normal
/*
* Copyright 2014 Dario Manesku. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "../common/common.sh"
2015-05-28 18:27:00 -04:00
uniform vec4 u_camPos;
2014-02-13 23:46:34 -05:00
void main()
{
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
vec3 normal = a_normal * 2.0 - 1.0;
v_normal = mul(u_model[0], vec4(normal, 0.0) ).xyz;
2015-05-28 18:27:00 -04:00
v_view = normalize(u_camPos.xyz - mul(u_model[0], vec4(a_position, 1.0)).xyz);
2014-02-13 23:46:34 -05:00
}