vtk-m/vtkm/cont/StorageList.h

39 lines
1.3 KiB
C
Raw Normal View History

2019-12-05 21:38:41 +00:00
//============================================================================
// 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.
//============================================================================
#ifndef vtk_m_cont_StorageList_h
#define vtk_m_cont_StorageList_h
#include <vtkm/List.h>
#include <vtkm/cont/ArrayHandleBasic.h>
#include <vtkm/cont/ArrayHandleCartesianProduct.h>
#include <vtkm/cont/ArrayHandleSOA.h>
#include <vtkm/cont/ArrayHandleUniformPointCoordinates.h>
2019-12-05 21:38:41 +00:00
namespace vtkm
{
namespace cont
{
using StorageListBasic = vtkm::List<vtkm::cont::StorageTagBasic>;
using StorageListCommon =
vtkm::List<vtkm::cont::StorageTagBasic,
vtkm::cont::StorageTagSOA,
vtkm::cont::StorageTagUniformPoints,
vtkm::cont::StorageTagCartesianProduct<vtkm::cont::StorageTagBasic,
vtkm::cont::StorageTagBasic,
vtkm::cont::StorageTagBasic>>;
2019-12-05 21:38:41 +00:00
}
} // namespace vtkm::cont
#endif //vtk_m_cont_StorageList_h