1
Fork 0

MariENB Skyrim 2.1.3

This commit is contained in:
Marisa the Magician 2019-04-07 17:41:10 +02:00
commit 6d0120e96a
15 changed files with 568 additions and 147 deletions

View file

@ -7,26 +7,33 @@
/* 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: 4, std dev: 1.5 */
/*static const float gauss4[4] =
{
0.270682, 0.216745, 0.111281, 0.036633
};*/
/* 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] =
/* radius: 40, std dev: 15 */
static const float gauss40[40] =
{
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
};*/
0.026823, 0.026763, 0.026585, 0.026291,
0.025886, 0.025373, 0.024760, 0.024055,
0.023267, 0.022404, 0.021478, 0.020499,
0.019477, 0.018425, 0.017352, 0.016269,
0.015186, 0.014112, 0.013056, 0.012025,
0.011027, 0.010067, 0.009149, 0.008279,
0.007458, 0.006688, 0.005972, 0.005308,
0.004697, 0.004139, 0.003630, 0.003170,
0.002756, 0.002385, 0.002055, 0.001763,
0.001506, 0.001280, 0.001084, 0.000913
};
/* radius: 80, std dev: 30 */
static const float gauss80[80] =
/*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,
@ -42,7 +49,7 @@ static const float gauss80[80] =
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;