mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
21 lines
469 B
Python
21 lines
469 B
Python
|
$input v_texcoord0
|
||
|
|
||
|
/*
|
||
|
* Copyright 2013 Dario Manesku. All rights reserved.
|
||
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include "../common/common.sh"
|
||
|
SAMPLER2D(u_shadowMap0, 4);
|
||
|
|
||
|
uniform vec4 u_params2;
|
||
|
#define u_depthValuePow u_params2.x
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 val = texture2D(u_shadowMap0, v_texcoord0);
|
||
|
float depth = unpackHalfFloat(val.rg);
|
||
|
vec3 rgba = pow(vec3_splat(depth), vec3_splat(u_depthValuePow) );
|
||
|
gl_FragColor = vec4(rgba, 1.0);
|
||
|
}
|