vtk-m/vtkm/CellClassification.h

32 lines
881 B
C
Raw Normal View History

2018-09-06 15:39:04 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2018-09-06 15:39:04 +00:00
// 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_CellClassification_h
#define vtk_m_CellClassification_h
2018-09-06 15:39:04 +00:00
2022-02-08 14:18:24 +00:00
#include <vtkm/Types.h>
2018-09-06 15:39:04 +00:00
namespace vtkm
{
enum CellClassification : vtkm::UInt8
2018-09-06 15:39:04 +00:00
{
NORMAL = 0, //Valid cell
GHOST = 1 << 0, //Ghost cell
INVALID = 1 << 1, //Cell is invalid
2018-09-06 15:39:04 +00:00
UNUSED0 = 1 << 2,
2021-12-13 16:33:47 +00:00
BLANKED = 1 << 3, //Blanked cell in AMR
2018-09-06 15:39:04 +00:00
UNUSED3 = 1 << 4,
UNUSED4 = 1 << 5,
UNUSED5 = 1 << 6,
};
}
#endif // vtk_m_CellClassification_h