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,16 @@
{
parms {
}
state {
depthfunc GL_ALWAYS
depthmask
twosided
}
hlsl_vp {
result.position = vertex.position;
}
hlsl_fp {
float2 texcoord = screenPosToTexcoord( fragment.position.xy, $positionToViewTexture );
result.hcolor = h4tex2D( $viewColorMap, texcoord.xy );
}
}