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.

55 lines
1.6 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkOSPRayVolumeInterface.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 vtkOSPRayVolumeInterface
* @brief Removes link dependence
* on optional ospray module.
*
* Class allows SmartVolume to use OSPRay for rendering when ospray
* is enabled. When disabled, this class does nothing but return a warning.
*/
#ifndef vtkOSPRayVolumeInterface_h
#define vtkOSPRayVolumeInterface_h
#include "vtkRenderingVolumeModule.h" // For export macro
#include "vtkVolumeMapper.h"
class vtkRenderer;
class vtkVolume;
class VTKRENDERINGVOLUME_EXPORT vtkOSPRayVolumeInterface : public vtkVolumeMapper
{
public:
static vtkOSPRayVolumeInterface* New();
vtkTypeMacro(vtkOSPRayVolumeInterface, vtkVolumeMapper);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Overridden to warn about lack of OSPRay if not overridden.
*/
void Render(vtkRenderer*, vtkVolume*) override;
protected:
vtkOSPRayVolumeInterface();
~vtkOSPRayVolumeInterface() override;
private:
vtkOSPRayVolumeInterface(const vtkOSPRayVolumeInterface&) = delete;
void operator=(const vtkOSPRayVolumeInterface&) = delete;
};
#endif