215 lines
5 KiB
HLSL
215 lines
5 KiB
HLSL
/*
|
|
menbbloominternals.fx : MariENB bloom internal variables.
|
|
(C)2013-2015 Marisa Kirisame, UnSX Team.
|
|
Part of MariENB, the personal ENB of Marisa.
|
|
Released under the GNU GPLv3 (or later).
|
|
*/
|
|
/* mathematical constants */
|
|
static const float pi = 3.1415926535898;
|
|
/* gaussian blur matrices */
|
|
/* radius: 3, std dev: 0.7014 */
|
|
/*static const float gauss3[3] = {0.568780, 0.205851, 0.009759};*/
|
|
/* radius: 8, std dev: 3 */
|
|
static const float gauss8[8] =
|
|
{
|
|
0.134598, 0.127325, 0.107778, 0.081638,
|
|
0.055335, 0.033562, 0.018216, 0.008847
|
|
};
|
|
/* radius: 36, std dev: 32 */
|
|
/*static const float gauss36[36] =
|
|
{
|
|
0.017014, 0.017006, 0.016981, 0.016939, 0.016881, 0.016807,
|
|
0.016717, 0.016612, 0.016490, 0.016354, 0.016203, 0.016038,
|
|
0.015859, 0.015666, 0.015461, 0.015244, 0.015015, 0.014775,
|
|
0.014524, 0.014264, 0.013995, 0.013718, 0.013433, 0.013141,
|
|
0.012843, 0.012539, 0.012231, 0.011918, 0.011602, 0.011284,
|
|
0.010964, 0.010642, 0.010319, 0.009997, 0.009675, 0.009355
|
|
};*/
|
|
/* radius: 80, std dev: 30 */
|
|
static const float gauss80[80] =
|
|
{
|
|
0.013406, 0.013398, 0.013376, 0.013339, 0.013287, 0.013221,
|
|
0.013140, 0.013046, 0.012938, 0.012816, 0.012681, 0.012534,
|
|
0.012375, 0.012205, 0.012023, 0.011831, 0.011629, 0.011417,
|
|
0.011198, 0.010970, 0.010735, 0.010493, 0.010245, 0.009992,
|
|
0.009735, 0.009473, 0.009209, 0.008941, 0.008672, 0.008402,
|
|
0.008131, 0.007860, 0.007590, 0.007321, 0.007053, 0.006788,
|
|
0.006525, 0.006266, 0.006010, 0.005759, 0.005511, 0.005269,
|
|
0.005031, 0.004799, 0.004573, 0.004352, 0.004138, 0.003929,
|
|
0.003727, 0.003532, 0.003343, 0.003160, 0.002985, 0.002816,
|
|
0.002653, 0.002497, 0.002348, 0.002205, 0.002068, 0.001938,
|
|
0.001814, 0.001696, 0.001584, 0.001478, 0.001377, 0.001282,
|
|
0.001192, 0.001107, 0.001027, 0.000952, 0.000881, 0.000815,
|
|
0.000753, 0.000694, 0.000640, 0.000589, 0.000542, 0.000497,
|
|
0.000456, 0.000418
|
|
};
|
|
/* standard stuff */
|
|
float4 ScreenSize;
|
|
float4 TempParameters;
|
|
float4 BloomParameters;
|
|
float ENightDayFactor;
|
|
float EInteriorFactor;
|
|
/* samplers and textures */
|
|
texture2D texBloom1;
|
|
texture2D texBloom2;
|
|
texture2D texBloom3;
|
|
texture2D texBloom4;
|
|
texture2D texBloom5;
|
|
texture2D texBloom6;
|
|
texture2D texBloom7;
|
|
texture2D texBloom8;
|
|
texture2D texLens
|
|
<
|
|
string ResourceName = "menblens.png";
|
|
>;
|
|
texture2D texLensbump
|
|
<
|
|
string ResourceName = "menblensbump.png";
|
|
>;
|
|
texture2D texLensdiff
|
|
<
|
|
string ResourceName = "menblensdiff.png";
|
|
>;
|
|
sampler2D SamplerBloom1 = sampler_state
|
|
{
|
|
Texture = <texBloom1>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom2 = sampler_state
|
|
{
|
|
Texture = <texBloom2>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom3 = sampler_state
|
|
{
|
|
Texture = <texBloom3>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom4 = sampler_state
|
|
{
|
|
Texture = <texBloom4>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom5 = sampler_state
|
|
{
|
|
Texture = <texBloom5>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom6 = sampler_state
|
|
{
|
|
Texture = <texBloom6>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom7 = sampler_state
|
|
{
|
|
Texture = <texBloom7>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerBloom8 = sampler_state
|
|
{
|
|
Texture = <texBloom8>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Border;
|
|
AddressV = Border;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerLens = sampler_state
|
|
{
|
|
Texture = <texLens>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Clamp;
|
|
AddressV = Clamp;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerLensbump = sampler_state
|
|
{
|
|
Texture = <texLensbump>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Clamp;
|
|
AddressV = Clamp;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
sampler2D SamplerLensdiff = sampler_state
|
|
{
|
|
Texture = <texLensdiff>;
|
|
MinFilter = LINEAR;
|
|
MagFilter = LINEAR;
|
|
MipFilter = NONE;
|
|
AddressU = Clamp;
|
|
AddressV = Clamp;
|
|
SRGBTexture = FALSE;
|
|
MaxMipLevel = 0;
|
|
MipMapLodBias = 0;
|
|
};
|
|
/* whatever */
|
|
struct VS_OUTPUT_POST
|
|
{
|
|
float4 vpos : POSITION;
|
|
float2 txcoord0 : TEXCOORD0;
|
|
};
|
|
struct VS_INPUT_POST
|
|
{
|
|
float3 pos : POSITION;
|
|
float2 txcoord0 : TEXCOORD0;
|
|
};
|