You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkDummyGPUInfoList.h
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.
=========================================================================*/
/**
* @class vtkDummyGPUInfoList
* @brief Do thing during Probe()
*
* vtkDummyGPUInfoList implements Probe() by just setting the count of
* GPUs to be zero. Useful when an OS specific implementation is not available.
* @sa
* vtkGPUInfo vtkGPUInfoList
*/
#ifndef vtkDummyGPUInfoList_h
#define vtkDummyGPUInfoList_h
#include "vtkGPUInfoList.h"
#include "vtkRenderingOpenGL2Module.h" // For export macro
class VTKRENDERINGOPENGL2_EXPORT vtkDummyGPUInfoList : public vtkGPUInfoList
{
public:
static vtkDummyGPUInfoList* New();
vtkTypeMacro(vtkDummyGPUInfoList, vtkGPUInfoList);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Build the list of vtkInfoGPU if not done yet.
* \post probed: IsProbed()
*/
void Probe() override;
protected:
//@{
/**
* Default constructor.
*/
vtkDummyGPUInfoList();
~vtkDummyGPUInfoList() override;
//@}
private:
vtkDummyGPUInfoList(const vtkDummyGPUInfoList&) = delete;
void operator=(const vtkDummyGPUInfoList&) = delete;
};
#endif