VTK-m  2.0
ConfigureFor32.h
Go to the documentation of this file.
1 //============================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //============================================================================
10 //This header can be used by external application that are consuming VTKm
11 //to define if VTKm should be set to use 32bit data types. If you need to
12 //customize more of the vtkm type system, or what Device Adapters
13 //need to be included look at vtkm/internal/Configure.h for all defines that
14 //you can over-ride.
15 #ifdef vtk_m_internal_Configure_h
16 #error Incorrect header order. Include this header before any other VTKm headers.
17 #endif
18 
19 #ifndef vtk_m_internal_Configure32_h
20 #define vtk_m_internal_Configure32_h
21 
22 #define VTKM_NO_DOUBLE_PRECISION
23 #define VTKM_NO_64BIT_IDS
24 
25 #include <vtkm/internal/Configure.h>
26 
27 #endif