mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
18 lines
406 B
Python
18 lines
406 B
Python
$input a_position
|
|
$output v_pos
|
|
|
|
/*
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
vec3 wpos = mul(u_model[0], vec4(a_position, 1.0) ).xyz;
|
|
gl_Position = mul(u_viewProj, vec4(wpos, 1.0) );
|
|
v_pos = gl_Position;
|
|
vec4 temp = mul(u_view, vec4(wpos, 1.0) );
|
|
v_pos.x = temp.z;
|
|
}
|