Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ftl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Pope
ftl
Commits
04cdb62a
Commit
04cdb62a
authored
5 years ago
by
Nicolas Pope
Browse files
Options
Downloads
Patches
Plain Diff
Correction to equality check
parent
b77fcacb
No related branches found
No related tags found
1 merge request
!151
Implements #216 triangle renderer
Pipeline
#15986
passed
5 years ago
Stage: all
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/renderers/cpp/src/triangle_render.cu
+6
-4
6 additions, 4 deletions
components/renderers/cpp/src/triangle_render.cu
with
6 additions
and
4 deletions
components/renderers/cpp/src/triangle_render.cu
+
6
−
4
View file @
04cdb62a
...
@@ -30,7 +30,8 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
...
@@ -30,7 +30,8 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
d
[
2
]
=
depth_in
.
tex2D
(
x
+
A
,
y
+
(
1
-
B
));
d
[
2
]
=
depth_in
.
tex2D
(
x
+
A
,
y
+
(
1
-
B
));
// Is this triangle valid
// Is this triangle valid
if
(
fabs
(
d
[
0
]
-
d
[
1
])
>
0.04
f
||
fabs
(
d
[
0
]
-
d
[
2
])
>
0.04
f
)
return
;
if
(
fabs
(
d
[
0
]
-
d
[
1
])
>
0.04
f
||
fabs
(
d
[
0
]
-
d
[
2
])
>
0.04
f
)
return
;
if
(
d
[
0
]
<
params
.
camera
.
minDepth
||
d
[
1
]
<
params
.
camera
.
minDepth
||
d
[
2
]
<
params
.
camera
.
minDepth
)
return
;
short2
s
[
3
];
short2
s
[
3
];
s
[
0
]
=
screen
.
tex2D
(
x
+
A
,
y
+
B
);
s
[
0
]
=
screen
.
tex2D
(
x
+
A
,
y
+
B
);
...
@@ -48,8 +49,8 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
...
@@ -48,8 +49,8 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
s
[
1
].
x
=
min
(
s
[
1
].
x
,
10
);
s
[
1
].
x
=
min
(
s
[
1
].
x
,
10
);
s
[
2
].
y
=
min
(
s
[
2
].
y
,
10
);
s
[
2
].
y
=
min
(
s
[
2
].
y
,
10
);
for
(
int
sx
=
0
;
sx
<
s
[
1
].
x
;
++
sx
)
{
for
(
int
sx
=
0
;
sx
<
=
s
[
1
].
x
;
++
sx
)
{
for
(
int
sy
=
0
;
sy
<
min
(
s
[
1
].
x
-
sx
,
s
[
2
].
y
);
++
sy
)
{
for
(
int
sy
=
0
;
sy
<
=
min
(
s
[
1
].
x
-
sx
,
s
[
2
].
y
);
++
sy
)
{
//if (sx > s[2].y-sy) continue;
//if (sx > s[2].y-sy) continue;
if
(
dx
*
sx
+
s
[
0
].
x
>=
params
.
camera
.
width
||
dy
*
sy
+
s
[
0
].
y
>=
params
.
camera
.
height
)
continue
;
if
(
dx
*
sx
+
s
[
0
].
x
>=
params
.
camera
.
width
||
dy
*
sy
+
s
[
0
].
y
>=
params
.
camera
.
height
)
continue
;
...
@@ -57,7 +58,8 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
...
@@ -57,7 +58,8 @@ __device__ inline float length2(int dx, int dy) { return dx*dx + dy*dy; }
float
dist2
=
length2
(
s
[
1
].
x
-
sx
,
s
[
1
].
y
-
sy
);
float
dist2
=
length2
(
s
[
1
].
x
-
sx
,
s
[
1
].
y
-
sy
);
float
dist3
=
length2
(
s
[
2
].
x
-
sx
,
s
[
2
].
y
-
sy
);
float
dist3
=
length2
(
s
[
2
].
x
-
sx
,
s
[
2
].
y
-
sy
);
float
new_depth
=
(
d
[
0
]
*
dist1
+
d
[
1
]
*
dist2
+
d
[
2
]
*
dist3
)
/
(
dist1
+
dist2
+
dist3
);
float
new_depth
=
(
d
[
0
]
*
dist1
+
d
[
1
]
*
dist2
+
d
[
2
]
*
dist3
)
/
(
dist1
+
dist2
+
dist3
);
//if (new_depth < params.camera.minDepth || new_depth > params.camera.maxDepth) continue;
atomicMin
(
&
depth_out
(
dx
*
sx
+
s
[
0
].
x
,
dy
*
sy
+
s
[
0
].
y
),
int
(
new_depth
*
1000.0
f
));
atomicMin
(
&
depth_out
(
dx
*
sx
+
s
[
0
].
x
,
dy
*
sy
+
s
[
0
].
y
),
int
(
new_depth
*
1000.0
f
));
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment