mirror of https://github.com/bkaradzic/bgfx
16 lines
305 B
Python
16 lines
305 B
Python
|
$input a_position
|
||
|
$output v_depth
|
||
|
|
||
|
/*
|
||
|
* Copyright 2013 Dario Manesku. All rights reserved.
|
||
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include "../common/common.sh"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
|
||
|
v_depth = gl_Position.z * 0.5 + 0.5;
|
||
|
}
|