mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
9 lines
236 B
Text
9 lines
236 B
Text
uniform sampler2DShadow shadowmap;
|
|
varying vec4 xlv_TEXCOORD0;
|
|
void main ()
|
|
{
|
|
gl_FragData[0] = vec4((shadow2D (shadowmap, xlv_TEXCOORD0.xyz).x + shadow2DProj (shadowmap, xlv_TEXCOORD0).x));
|
|
}
|
|
|
|
|
|
// inputs: 1, stats: 1 alu 2 tex 0 flow
|