随机采样太阳中心周围的点,计算被遮挡和未被遮挡的像素点数量的比值作为sunmask,成功实现光晕强度根据地形遮挡程度渐变

const int NUM_SAMPLES = 16;
const float SAMPLE_RADIUS = 0.04;
float visibility = 0.0;
for(int i = 0; i < NUM_SAMPLES; i++) {
float random1 = fract(sin(float(i)*12.9898) * 43758.5453);
float random2 = fract(sin(float(i)*78.233) * 43758.5453);
vec2 offset = vec2(
(random1 * 2.0 - 1.0) * SAMPLE_RADIUS,
(random2 * 2.0 - 1.0) * SAMPLE_RADIUS
);
vec2 sampleCoord = lightPos + offset;
float sceneDepth = texture(depthtex1, sampleCoord).r;
visibility += step(1.0, sceneDepth);
}
visibility /= float(NUM_SAMPLES);
bool inBounds = all(greaterThan(lightPos, vec2(-0.12))) &&
all(lessThan(lightPos, vec2(1.12)));
float sunmask = visibility * float(inBounds && isEyeInWater <= 0.1 && blindness == 0.0);


