mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
20 lines
454 B
Scala
20 lines
454 B
Scala
$input v_position
|
|
|
|
/*
|
|
* Copyright 2013-2014 Dario Manesku. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
float depth = v_position.z/v_position.w * 0.5 + 0.5;
|
|
float depthSq = depth*depth;
|
|
|
|
//TODO: try this.
|
|
//vec2 dxy = vec2(dFdx(depth), dFdy(depth));
|
|
//depthSq += 0.25*dot(dxy, dxy);
|
|
|
|
gl_FragColor = vec4(packHalfFloat(depth), packHalfFloat(depthSq));
|
|
}
|