Skip to content
Snippets Groups Projects
Commit e170518d authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Triangle validity test

parent 6bbb4473
No related branches found
No related tags found
1 merge request!151Implements #216 triangle renderer
Pipeline #15983 passed
...@@ -28,6 +28,9 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; } ...@@ -28,6 +28,9 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
d[1] = depth_in.tex2D(x+1,y); d[1] = depth_in.tex2D(x+1,y);
d[2] = depth_in.tex2D(x,y+1); d[2] = depth_in.tex2D(x,y+1);
// Is this triangle valid
if (fabs(d[0] - d[1]) > 0.04f || fabs(d[0] - d[2]) > 0.04f) return;
short2 s[3]; short2 s[3];
s[0] = screen.tex2D(x,y); s[0] = screen.tex2D(x,y);
s[1] = screen.tex2D(x+1,y); s[1] = screen.tex2D(x+1,y);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment