Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Christian Butz
VTK
Commits
b1b0b635
Commit
b1b0b635
authored
Mar 30, 2015
by
Robert Maynard
Committed by
Will Schroeder
Sep 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get ThreadedSynchronizedTemplates3D to work with more than 4GB.
parent
e897682a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Filters/SMP/vtkThreadedSynchronizedTemplates3D.cxx
Filters/SMP/vtkThreadedSynchronizedTemplates3D.cxx
+2
-2
No files found.
Filters/SMP/vtkThreadedSynchronizedTemplates3D.cxx
View file @
b1b0b635
...
...
@@ -852,8 +852,8 @@ void vtkThreadedSynchronizedTemplates3D::ThreadedExecute(vtkImageData *data,
DoThreadedContour
functor
(
this
,
exExt
,
data
,
inScalars
,
nPieces
);
vtkSMPTools
::
For
(
0
,
nPieces
,
functor
);
int
p
=
0
;
for
(
int
i
=
0
;
i
<
functor
.
GetNumberOfOutputPieces
();
++
i
)
vtkIdType
p
=
0
;
for
(
vtkIdType
i
=
0
;
i
<
functor
.
GetNumberOfOutputPieces
();
++
i
)
{
vtkPolyData
*
piece
=
functor
.
GetOutputPiece
(
i
);
output
->
SetBlock
(
p
++
,
piece
);
...
...
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