Skip to content

Commit a64d78a

Browse files
RealBadAngelest31
authored andcommittedDec 10, 2015
Speed up and make more accurate relief mapping
using linear + binary search.
1 parent 696148e commit a64d78a

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed
 

‎client/shaders/nodes_shader/opengl_fragment.glsl

+19-5
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,29 @@ vec4 get_normal_map(vec2 uv)
4747

4848
float find_intersection(vec2 dp, vec2 ds)
4949
{
50-
const float depth_step = 1.0 / 24.0;
5150
float depth = 1.0;
52-
for (int i = 0 ; i < 24 ; i++) {
51+
float best_depth = 0.0;
52+
float size = 0.0625;
53+
for (int i = 0; i < 15; i++) {
54+
depth -= size;
5355
float h = texture2D(normalTexture, dp + ds * depth).a;
54-
if (h >= depth)
56+
if (depth <= h) {
57+
best_depth = depth;
5558
break;
56-
depth -= depth_step;
59+
}
5760
}
58-
return depth;
61+
depth = best_depth;
62+
for (int i = 0; i < 4; i++) {
63+
size *= 0.5;
64+
float h = texture2D(normalTexture,dp + ds * depth).a;
65+
if (depth <= h) {
66+
best_depth = depth;
67+
depth += size;
68+
} else {
69+
depth -= size;
70+
}
71+
}
72+
return best_depth;
5973
}
6074

6175
float find_intersectionRGB(vec2 dp, vec2 ds)

0 commit comments

Comments
 (0)
Please sign in to comment.