1
Fork 0

MariENB Skyrim 2.6.0

This commit is contained in:
Marisa the Magician 2019-04-07 17:45:06 +02:00
commit b7c83e4151
29 changed files with 1153 additions and 154 deletions

View file

@ -43,9 +43,18 @@ static const float ordered8[64] =
float4 ScreenSize;
float ENightDayFactor;
float EInteriorFactor;
float4 Timer;
/* samplers and textures */
texture2D texColor;
texture2D texDepth;
texture2D texFont
<
string ResourceName = "menbvgaluma.png";
>;
texture2D texDots
<
string ResourceName = "menbdots.png";
>;
texture2D texCGA
<
string ResourceName = "menbcgalut.png";
@ -102,6 +111,30 @@ sampler2D SamplerDepth = sampler_state
MaxMipLevel = 0;
MipMapLodBias = 0;
};
sampler2D SamplerFont = sampler_state
{
Texture = <texFont>;
MinFilter = LINEAR;
MagFilter = POINT;
MipFilter = NONE;
AddressU = Wrap;
AddressV = Wrap;
SRGBTexture = FALSE;
MaxMipLevel = 0;
MipMapLodBias = 0;
};
sampler2D SamplerDots = sampler_state
{
Texture = <texDots>;
MinFilter = LINEAR;
MagFilter = LINEAR;
MipFilter = NONE;
AddressU = Wrap;
AddressV = Wrap;
SRGBTexture = FALSE;
MaxMipLevel = 0;
MipMapLodBias = 0;
};
sampler2D SamplerCGA = sampler_state
{
Texture = <texCGA>;