mirror of
https://github.com/holub/mame
synced 2025-07-08 19:31:59 +03:00

* Update to bgfx a93a714632b79b5ddbf5c86ac323fa9b76ed3433 Co-authored-by: Бранимир Караџић <branimirkaradzic@gmail.com>
15 lines
294 B
Scala
15 lines
294 B
Scala
$input v_position
|
|
|
|
/*
|
|
* Copyright 2013-2014 Dario Manesku. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
float depth = v_position.z/v_position.w * 0.5 + 0.5;
|
|
gl_FragColor = packFloatToRgba(depth);
|
|
}
|