e4s-game/gamedata/shaders/d3d11/accum_emissive.ps.hlsl
2026-06-18 01:18:29 +03:00

7 lines
161 B
HLSL

#include "common.hlsli"
float4 main(p_bumped_new I) : SV_Target
{
return float4(PushGamma(s_base.Sample(smp_base, I.tcdh.xy).xyz) * 16.0f, 0.0f);
}