1
Fork 0

MariENB FROST 3.1.1b

This commit is contained in:
Marisa the Magician 2019-04-07 17:51:06 +02:00
commit 3ac87d62f3
34 changed files with 7072 additions and 13 deletions

33
enbseries/enblens.fx Normal file
View file

@ -0,0 +1,33 @@
/* This shader intentionally left blank */
struct VS_INPUT_POST
{
float3 pos : POSITION;
float2 txcoord : TEXCOORD0;
};
struct VS_OUTPUT_POST
{
float4 pos : SV_POSITION;
float2 txcoord0 : TEXCOORD0;
};
VS_OUTPUT_POST VS_Quad(VS_INPUT_POST IN)
{
VS_OUTPUT_POST OUT;
float4 pos;
pos.xyz = IN.pos.xyz;
pos.w = 1.0;
OUT.pos = pos;
OUT.txcoord0.xy = IN.txcoord.xy;
return OUT;
}
float4 PS_Nothing(VS_OUTPUT_POST IN, float4 v0 : SV_Position0) : SV_Target
{
return float4(0.0,0.0,0.0,1.0);
}
technique11 Nothing
{
pass p0
{
SetVertexShader(CompileShader(vs_5_0,VS_Quad()));
SetPixelShader(CompileShader(ps_5_0,PS_Nothing()));
}
}