//============================================================================ // 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 #include #include //This sets up testing with the default device adapter and array container #include int UnitTestTransferEGL(int argc, char* argv[]) { vtkm::cont::Initialize(argc, argv); //get egl canvas to construct a context for us vtkm::rendering::CanvasEGL canvas(1024, 1024); //get glew to bind all the opengl functions glewInit(); return vtkm::interop::testing::TestingOpenGLInterop::Run(); }