1
Fork 0

MariENB Skyrim 2.5.1

This commit is contained in:
Marisa the Magician 2019-04-07 17:44:54 +02:00
commit 42ae0bbd03
20 changed files with 1591 additions and 2033 deletions

View file

@ -103,6 +103,14 @@ texture2D texTonemap
<
string ResourceName = "menbfilmlut.png";
>;
texture2D texFrost
<
#ifdef FROST_DDS
string ResourceName = "menbfrost.dds";
#else
string ResourceName = "menbfrost.png";
#endif
>;
sampler2D _s0 = sampler_state
{
Texture = <texs0>;
@ -274,6 +282,18 @@ sampler2D SamplerTonemap = sampler_state
MaxMipLevel = 0;
MipMapLodBias = 0;
};
sampler2D SamplerFrost = sampler_state
{
Texture = <texFrost>;
MinFilter = LINEAR;
MagFilter = LINEAR;
MipFilter = NONE;
AddressU = Wrap;
AddressV = Wrap;
SRGBTexture = FALSE;
MaxMipLevel = 0;
MipMapLodBias = 0;
};
/* whatever */
struct VS_OUTPUT_POST
{