mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
15 lines
283 B
Python
15 lines
283 B
Python
|
$input v_position
|
||
|
|
||
|
/*
|
||
|
* Copyright 2013 Dario Manesku. All rights reserved.
|
||
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include "../common/common.sh"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
float depth = v_position.z/v_position.w * 0.5 + 0.5;
|
||
|
gl_FragColor = packFloatToRgba(depth);
|
||
|
}
|