2013-12-11 07:37:51 +04:00
|
|
|
$input a_position
|
|
|
|
$output v_depth
|
|
|
|
|
|
|
|
/*
|
2014-01-14 02:45:18 +04:00
|
|
|
* Copyright 2013-2014 Dario Manesku. All rights reserved.
|
2022-01-15 22:59:06 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
2013-12-11 07:37:51 +04:00
|
|
|
*/
|
|
|
|
|
2014-01-14 00:25:53 +04:00
|
|
|
#include "../common/common.sh"
|
2013-12-11 07:37:51 +04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
|
|
|
|
v_depth = gl_Position.z * 0.5 + 0.5;
|
|
|
|
}
|