mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
12 lines
473 B
Text
12 lines
473 B
Text
#extension GL_EXT_shader_texture_lod : enable
|
|
#extension GL_EXT_shadow_samplers : enable
|
|
varying highp vec4 uv;
|
|
uniform sampler2DShadow shadowmap;
|
|
uniform sampler2D tex;
|
|
void main ()
|
|
{
|
|
lowp vec4 tmpvar_1;
|
|
tmpvar_1 = (((((texture2DProj (tex, uv) + texture2DProj (tex, uv.xyz)) + texture2DProjLodEXT (tex, uv, 1.0)) + texture2DProjLodEXT (tex, uv.xyz, 1.0)) + vec4(shadow2DEXT (shadowmap, uv.xyz))) + vec4(shadow2DProjEXT (shadowmap, uv)));
|
|
gl_FragColor = tmpvar_1;
|
|
}
|
|
|