vtk-m/vtkm/rendering/testing/UnitTestMapperVolume.cxx

59 lines
2.1 KiB
C++
Raw Normal View History

2016-01-20 22:40:54 +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.
//
// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
2016-01-20 22:40:54 +00:00
// Copyright 2015 UT-Battelle, LLC.
// Copyright 2015 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
2016-01-20 22:40:54 +00:00
// 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.
//============================================================================
2016-11-23 15:48:22 +00:00
2017-05-18 14:51:24 +00:00
#include <vtkm/cont/DeviceAdapter.h>
2016-01-20 22:40:54 +00:00
#include <vtkm/cont/testing/MakeTestDataSet.h>
2017-05-18 14:51:24 +00:00
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/rendering/Actor.h>
#include <vtkm/rendering/Canvas.h>
#include <vtkm/rendering/CanvasRayTracer.h>
#include <vtkm/rendering/MapperVolume.h>
#include <vtkm/rendering/Scene.h>
#include <vtkm/rendering/View3D.h>
2016-11-23 15:48:22 +00:00
#include <vtkm/rendering/testing/RenderTest.h>
2017-05-18 14:29:41 +00:00
namespace
{
2016-05-18 17:25:05 +00:00
void RenderTests()
{
using M = vtkm::rendering::MapperVolume;
using C = vtkm::rendering::CanvasRayTracer;
using V3 = vtkm::rendering::View3D;
2016-11-23 15:48:22 +00:00
vtkm::cont::testing::MakeTestDataSet maker;
vtkm::cont::ColorTable colorTable("inferno");
colorTable.AddPointAlpha(0.0, .01f);
colorTable.AddPointAlpha(1.0, .01f);
2017-05-18 14:29:41 +00:00
vtkm::rendering::testing::Render<M, C, V3>(
maker.Make3DRegularDataSet0(), "pointvar", colorTable, "reg3D.pnm");
vtkm::rendering::testing::Render<M, C, V3>(
maker.Make3DRectilinearDataSet0(), "pointvar", colorTable, "rect3D.pnm");
}
2016-01-20 22:40:54 +00:00
} //namespace
2016-11-23 15:48:22 +00:00
2017-05-18 14:29:41 +00:00
int UnitTestMapperVolume(int, char* [])
2016-01-20 22:40:54 +00:00
{
vtkm::cont::GetGlobalRuntimeDeviceTracker().ForceDevice(VTKM_DEFAULT_DEVICE_ADAPTER_TAG());
2016-11-23 15:48:22 +00:00
return vtkm::cont::testing::Testing::Run(RenderTests);
2016-01-20 22:40:54 +00:00
}