Moving ClipTables

moving ClipTables from vtkm/worklet/internal to vtkm/worklet/clip
This commit is contained in:
ayenpure 2018-12-18 09:57:00 +05:30
parent d1d495d435
commit 2b4801239e
5 changed files with 27 additions and 2 deletions

@ -94,6 +94,7 @@ set(header_impls
#-----------------------------------------------------------------------------
add_subdirectory(internal)
add_subdirectory(clip)
add_subdirectory(colorconversion)
add_subdirectory(contour)
add_subdirectory(contourtree)

@ -27,7 +27,7 @@
#include <vtkm/worklet/WorkletMapField.h>
#include <vtkm/worklet/WorkletMapTopology.h>
#include <vtkm/worklet/WorkletReduceByKey.h>
#include <vtkm/worklet/internal/ClipTables.h>
#include <vtkm/worklet/clip/ClipTables.h>
#include <vtkm/cont/Algorithm.h>
#include <vtkm/cont/ArrayCopy.h>

@ -0,0 +1,25 @@
##============================================================================
## Copyright (c) Kitware, Inc.
## All rights reserved.
## See LICENSE.txt for details.
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notice for more information.
##
## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
## Copyright 2018 UT-Battelle, LLC.
## Copyright 2018 Los Alamos National Security.
##
## Under the terms of Contract DE-NA0003525 with NTESS,
## the U.S. Government retains certain rights in this software.
##
## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
## Laboratory (LANL), the U.S. Government retains certain rights in
## this software.
##============================================================================
set(headers
ClipTables.h
)
vtkm_declare_headers(${headers})

@ -19,7 +19,6 @@
##============================================================================
set(headers
ClipTables.h
DispatcherBase.h
TriangulateTables.h
WorkletBase.h