1
Fork 0

MariENB 1.2015.6.1

This commit is contained in:
Marisa the Magician 2019-04-07 17:17:45 +02:00
commit 49a3cf6757
8 changed files with 79 additions and 8 deletions

View file

@ -71,6 +71,10 @@ texture2D texNoise3
<
string ResourceName = "menbnoise2.png";
>;
texture2D texLUT
<
string ResourceName = "menblutpreset.png";
>;
sampler2D _s0 = sampler_state
{
Texture = <texs0>;
@ -167,6 +171,18 @@ sampler2D SamplerNoise3 = sampler_state
MaxMipLevel = 0;
MipMapLodBias = 0;
};
sampler2D SamplerLUT = sampler_state
{
Texture = <texLUT>;
MinFilter = LINEAR;
MagFilter = LINEAR;
MipFilter = NONE;
AddressU = Wrap;
AddressV = Wrap;
SRGBTexture = FALSE;
MaxMipLevel = 0;
MipMapLodBias = 0;
};
/* whatever */
struct VS_OUTPUT_POST
{