Files
Rage 376b4b9689 Added New Mods and Profiles Folders
This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
2025-01-14 05:07:53 -05:00

20 lines
302 B
PostScript

#include "common.h"
Texture2D rt_tempzb;
float4 m_hud_params;
struct PSOutput
{
float4 mask : SV_Target3;
float depth : SV_Depth;
};
PSOutput main(float4 hpos : SV_Position)
{
PSOutput output;
output.depth = rt_tempzb[hpos.xy].x;
output.mask = float4(1.0, 0.0, 0.0, 1.0);
return output;
}