File tree 1 file changed +19
-5
lines changed
client/shaders/nodes_shader
1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,29 @@ vec4 get_normal_map(vec2 uv)
47
47
48
48
float find_intersection(vec2 dp, vec2 ds)
49
49
{
50
- const float depth_step = 1.0 / 24.0 ;
51
50
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;
53
55
float h = texture2D (normalTexture, dp + ds * depth).a;
54
- if (h >= depth)
56
+ if (depth <= h) {
57
+ best_depth = depth;
55
58
break ;
56
- depth -= depth_step;
59
+ }
57
60
}
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;
59
73
}
60
74
61
75
float find_intersectionRGB(vec2 dp, vec2 ds)
You can’t perform that action at this time.
0 commit comments