mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-29 02:55:36 -05:00
15 lines
282 B
Text
15 lines
282 B
Text
|
#version 300 es
|
||
|
precision mediump float;
|
||
|
uniform lowp samplerCubeShadow shadowmap;
|
||
|
in mediump vec4 uv;
|
||
|
out mediump vec4 _fragColor;
|
||
|
void main ()
|
||
|
{
|
||
|
lowp vec4 tmpvar_1;
|
||
|
tmpvar_1 = vec4(texture (shadowmap, uv));
|
||
|
_fragColor = tmpvar_1;
|
||
|
}
|
||
|
|
||
|
|
||
|
// inputs: 1, stats: 0 alu 1 tex 0 flow
|