vtk-m/vtkm/interop/testing/UnitTestFancyTransferOSMesa.cxx

27 lines
918 B
C++

//============================================================================
// 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.
//============================================================================
#include <GL/glew.h>
#include <vtkm/interop/testing/TestingTransferFancyHandles.h>
#include <vtkm/rendering/CanvasOSMesa.h>
int UnitTestFancyTransferOSMesa(int argc, char* argv[])
{
vtkm::cont::Initialize(argc, argv);
//get osmesa canvas to construct a context for us
vtkm::rendering::CanvasOSMesa canvas(1024, 1024);
//get glew to bind all the opengl functions
glewInit();
return vtkm::interop::testing::TestingTransferFancyHandles::Run();
}