File base/glsl/dungeon_sky_high.frag changed (mode: 100644) (index f90b543..73c151c) |
... |
... |
layout(location = 0) out vec4 fragColor; |
34 |
34 |
// Turning this off saves a texture lookup for most samples on the screen. |
// Turning this off saves a texture lookup for most samples on the screen. |
35 |
35 |
const bool pbrTextures = false; |
const bool pbrTextures = false; |
36 |
36 |
|
|
|
37 |
|
// Noise detail scale factor. |
|
38 |
|
const float grimeScale = 400.0; |
|
39 |
|
|
37 |
40 |
const float VSM_MINIMUM_VARIANCE = 0.00001; |
const float VSM_MINIMUM_VARIANCE = 0.00001; |
38 |
41 |
const float VSM_LEAK_REDUCTION = 0.4; |
const float VSM_LEAK_REDUCTION = 0.4; |
39 |
42 |
|
|
|
... |
... |
vec3 SkyColor( vec3 A, float hard, float sunF ){ |
102 |
105 |
return u_fog.rgb + vec3( sun, sun * 0.95, sun * ( v + 0.2 ) ) * sunF + glow; |
return u_fog.rgb + vec3( sun, sun * 0.95, sun * ( v + 0.2 ) ) * sunF + glow; |
103 |
106 |
} |
} |
104 |
107 |
|
|
105 |
|
float ScreenNoise(){ |
|
106 |
|
return fract(sin(dot(gl_FragCoord.xy ,vec2(12.9898,78.233))) * 43758.5453); |
|
|
108 |
|
float Noise2(vec2 uv){ |
|
109 |
|
return fract(sin(dot(uv, vec2(12.9898,78.233))) * 43758.5453); |
|
110 |
|
} |
|
111 |
|
|
|
112 |
|
// https://gist.github.com/patriciogonzalezvivo/670c22f3966e662d2f83 |
|
113 |
|
float mod289(float x){return x - floor(x * (1.0 / 289.0)) * 289.0;} |
|
114 |
|
vec4 mod289(vec4 x){return x - floor(x * (1.0 / 289.0)) * 289.0;} |
|
115 |
|
vec4 perm(vec4 x){return mod289(((x * 34.0) + 1.0) * x);} |
|
116 |
|
|
|
117 |
|
float Noise3(vec3 p){ |
|
118 |
|
vec3 a = floor(p); |
|
119 |
|
vec3 d = p - a; |
|
120 |
|
d = d * d * (3.0 - 2.0 * d); |
|
121 |
|
|
|
122 |
|
vec4 b = a.xxyy + vec4(0.0, 1.0, 0.0, 1.0); |
|
123 |
|
vec4 k1 = perm(b.xyxy); |
|
124 |
|
vec4 k2 = perm(k1.xyxy + b.zzww); |
|
125 |
|
|
|
126 |
|
vec4 c = k2 + a.zzzz; |
|
127 |
|
vec4 k3 = perm(c); |
|
128 |
|
vec4 k4 = perm(c + 1.0); |
|
129 |
|
|
|
130 |
|
vec4 o1 = fract(k3 * (1.0 / 41.0)); |
|
131 |
|
vec4 o2 = fract(k4 * (1.0 / 41.0)); |
|
132 |
|
|
|
133 |
|
vec4 o3 = o2 * d.z + o1 * (1.0 - d.z); |
|
134 |
|
vec2 o4 = o3.yw * d.x + o3.xz * (1.0 - d.x); |
|
135 |
|
|
|
136 |
|
return o4.y * d.y + o4.x * (1.0 - d.y); |
107 |
137 |
} |
} |
108 |
138 |
|
|
109 |
139 |
void main(){ |
void main(){ |
|
... |
... |
void main(){ |
113 |
143 |
// Stochastic distance fade over the farthest 10% of fragments. |
// Stochastic distance fade over the farthest 10% of fragments. |
114 |
144 |
float distance = length(v_RelativePos); |
float distance = length(v_RelativePos); |
115 |
145 |
float p = distance / u_camera.w; |
float p = distance / u_camera.w; |
116 |
|
if(p > 1.0 || (p > 0.9 && ScreenNoise() * 0.1 < p - 0.9)) |
|
|
146 |
|
if(p > 1.0 || (p > 0.9 && Noise2(gl_FragCoord.xy) * 0.1 < p - 0.9)) |
117 |
147 |
discard; |
discard; |
118 |
148 |
|
|
119 |
149 |
// Only look up the emissive texture if the emissive color > 1%. |
// Only look up the emissive texture if the emissive color > 1%. |
|
... |
... |
void main(){ |
121 |
151 |
if( emissiveColor.r + emissiveColor.g + emissiveColor.b > 0.01 ) |
if( emissiveColor.r + emissiveColor.g + emissiveColor.b > 0.01 ) |
122 |
152 |
emissiveColor *= texture( u_emissive, v_UV ).rgb; |
emissiveColor *= texture( u_emissive, v_UV ).rgb; |
123 |
153 |
|
|
124 |
|
vec3 N = normalize( v_Normal ); |
|
|
154 |
|
// Get metallic and roughness values. |
|
155 |
|
vec2 mr = pbrTextures ? texture( u_metallicRoughness, v_UV ).xy : vec2( 1.0, 1.0 ); |
|
156 |
|
float metallic = mr.x * u_metallicFactor; |
|
157 |
|
float roughness = mr.y * u_roughnessFactor; |
|
158 |
|
|
|
159 |
|
// Compute noise mask for normal perturbation. |
|
160 |
|
vec3 uvScaled = vec3(v_UV * grimeScale, 0.0); |
|
161 |
|
vec2 noiseVec = vec2(Noise3(uvScaled), Noise3(uvScaled + vec3(10.0))); |
|
162 |
|
float grimeMask = pow(smoothstep(0.45, 0.65, noiseVec.x), 1.2); |
|
163 |
|
|
|
164 |
|
// Perturb the normal with noise. |
|
165 |
|
vec3 N = normalize(normalize(v_Normal) + vec3((noiseVec - 0.5) * grimeMask * roughness * roughness, 0.0)); |
125 |
166 |
vec3 lightNormal = normalize( v_LightDirection.xyz ); |
vec3 lightNormal = normalize( v_LightDirection.xyz ); |
126 |
167 |
float visibility = 1.0 / exp( distance * u_fog.a ); |
float visibility = 1.0 / exp( distance * u_fog.a ); |
127 |
168 |
float shadowFactor = clamp((visibility - 0.73) * 6.25, 0.0, 1.0); |
float shadowFactor = clamp((visibility - 0.73) * 6.25, 0.0, 1.0); |
|
... |
... |
void main(){ |
144 |
185 |
// Apply the base color factor after posterization to allow a fuller range of colors. |
// Apply the base color factor after posterization to allow a fuller range of colors. |
145 |
186 |
baseColor *= vec4( vec3( adjustment ), 1.0 ) * u_baseColorFactor; |
baseColor *= vec4( vec3( adjustment ), 1.0 ) * u_baseColorFactor; |
146 |
187 |
|
|
147 |
|
vec2 mr = pbrTextures ? texture( u_metallicRoughness, v_UV ).xy : vec2( 1.0, 1.0 ); |
|
148 |
|
float metallic = mr.x * u_metallicFactor; |
|
149 |
|
float roughness = mr.y * u_roughnessFactor; |
|
150 |
|
|
|
151 |
188 |
vec3 F0 = mix( vec3( 0.04 ), baseColor.rgb, metallic ); |
vec3 F0 = mix( vec3( 0.04 ), baseColor.rgb, metallic ); |
152 |
189 |
|
|
153 |
190 |
vec3 V = normalize(u_camera.xyz - v_Position); |
vec3 V = normalize(u_camera.xyz - v_Position); |