Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Pierre NARVOR
rtac_base
Commits
13b23647
Commit
13b23647
authored
Oct 28, 2021
by
Pierre NARVOR
Browse files
[cuda/mapping] Added default Constructor to Mapping type
parent
3cce1e9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
cuda/include/rtac_base/cuda/Mapping.h
View file @
13b23647
...
...
@@ -93,6 +93,7 @@ class Mapping
Texture
data_
;
FunctorT
f_
;
Mapping
();
Mapping
(
Texture
&&
data
);
Mapping
(
Texture
&&
data
,
const
FunctorT
&
f
);
...
...
@@ -114,6 +115,10 @@ class Mapping
DeviceMap
device_map
()
const
;
};
template
<
typename
T
,
class
FunctorT
>
Mapping
<
T
,
FunctorT
>::
Mapping
()
{}
template
<
typename
T
,
class
FunctorT
>
Mapping
<
T
,
FunctorT
>::
Mapping
(
Texture
&&
data
)
:
data_
(
data
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment