Added shaders and doomscript from the build.

This commit is contained in:
Justin Marshall
2026-08-09 04:23:10 -07:00
parent 82cfb1972d
commit 1d0c9d6657
734 changed files with 19587 additions and 0 deletions
@@ -0,0 +1,31 @@
{
parms {
stageSort sortLight
lightColor lightColor * exposure * lightFade
}
state {
depthfunc GL_LEQUAL
depthMask
alphaMask
blend GL_ONE GL_ONE
registerCount360 48
}
hlsl_vp {
#include "includes/interaction.inc"
#include "skinning_normals.inc"
INTERACTION_VERTEX;
}
hlsl_fp {
#include "includes/shadow.inc"
#include "includes/interaction.inc"
float shadow;
SAMPLE_PARALLEL_LIGHT_SHADOW( shadow, fragment.texcoord5, fragment.texcoord2.w );
INTERACTION_FRAGMENT_BASIC_NOVMTR( shadow );
}
}