/*========================================================================= Program: Visualization Toolkit Module: TestQVTKOpenGLWidgetWithMSAA.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm 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. =========================================================================*/ // Tests QVTKOpenGLWidget with MSAA (based on TestQVTKOpenGLWidget) #include "QVTKOpenGLWidget.h" #include "vtkActor.h" #include "vtkGenericOpenGLRenderWindow.h" #include "vtkNew.h" #include "vtkPolyDataMapper.h" #include "vtkRenderer.h" #include "vtkSphereSource.h" #include "vtkTesting.h" #include #include int TestQVTKOpenGLWidgetWithMSAA(int argc, char* argv[]) { // enable multisampling. vtkOpenGLRenderWindow::SetGlobalMaximumNumberOfMultiSamples(8); QSurfaceFormat::setDefaultFormat(QVTKOpenGLWidget::defaultFormat()); QApplication app(argc, argv); vtkNew vtktesting; vtktesting->AddArguments(argc, argv); vtkNew window; QVTKOpenGLWidget widget; widget.SetRenderWindow(window); vtkNew ren; ren->SetGradientBackground(1); ren->SetBackground2(0.7, 0.7, 0.7); window->AddRenderer(ren); vtkNew sphere; vtkNew mapper; mapper->SetInputConnection(sphere->GetOutputPort()); vtkNew actor; actor->SetMapper(mapper); ren->AddActor(actor); vtktesting->SetRenderWindow(window); widget.show(); app.processEvents(); int retVal = vtktesting->RegressionTest(10); switch (retVal) { case vtkTesting::DO_INTERACTOR: return app.exec(); case vtkTesting::FAILED: case vtkTesting::NOT_RUN: return EXIT_FAILURE; } return EXIT_SUCCESS; }