Skip to content

Commit

Permalink
Use range-based fog instead of z-plane based.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhofhansl authored and sfan5 committed Oct 13, 2016
1 parent c9e7a27 commit 0ad40fd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions client/shaders/nodes_shader/opengl_fragment.glsl
Expand Up @@ -197,13 +197,13 @@ void main(void)
#if MATERIAL_TYPE == TILE_MATERIAL_LIQUID_TRANSPARENT
float alpha = gl_Color.a;
if (fogDistance != 0.0) {
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
alpha = mix(alpha, 0.0, d);
}
col = vec4(col.rgb, alpha);
#else
if (fogDistance != 0.0) {
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
col = mix(col, skyBgColor, d);
}
col = vec4(col.rgb, base.a);
Expand Down
4 changes: 2 additions & 2 deletions client/shaders/water_surface_shader/opengl_fragment.glsl
Expand Up @@ -153,13 +153,13 @@ vec4 base = texture2D(baseTexture, uv).rgba;
#if MATERIAL_TYPE == TILE_MATERIAL_LIQUID_TRANSPARENT || MATERIAL_TYPE == TILE_MATERIAL_LIQUID_OPAQUE
float alpha = gl_Color.a;
if (fogDistance != 0.0) {
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
alpha = mix(alpha, 0.0, d);
}
col = vec4(col.rgb, alpha);
#else
if (fogDistance != 0.0) {
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
col = mix(col, skyBgColor, d);
}
col = vec4(col.rgb, base.a);
Expand Down
2 changes: 1 addition & 1 deletion client/shaders/wielded_shader/opengl_fragment.glsl
Expand Up @@ -107,7 +107,7 @@ void main(void)
vec4 col = vec4(color.rgb, base.a);
col *= gl_Color;
if (fogDistance != 0.0) {
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
col = mix(col, skyBgColor, d);
}
gl_FragColor = vec4(col.rgb, base.a);
Expand Down
2 changes: 1 addition & 1 deletion src/game.cpp
Expand Up @@ -4168,7 +4168,7 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats,
runData->fog_range * 1.0,
0.01,
false, // pixel fog
false // range fog
true // range fog
);
} else {
driver->setFog(
Expand Down

0 comments on commit 0ad40fd

Please sign in to comment.