vtk-m/vtkm/rendering/CanvasOSMesa.h
2019-04-17 10:57:13 -06:00

55 lines
1.2 KiB
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.
//============================================================================
#ifndef vtk_m_rendering_CanvasOSMesa_h
#define vtk_m_rendering_CanvasOSMesa_h
#include <vtkm/rendering/vtkm_rendering_export.h>
#include <vtkm/rendering/CanvasGL.h>
#include <memory>
namespace vtkm
{
namespace rendering
{
namespace detail
{
struct CanvasOSMesaInternals;
} // namespace detail
class VTKM_RENDERING_EXPORT CanvasOSMesa : public CanvasGL
{
public:
CanvasOSMesa(vtkm::Id width = 1024, vtkm::Id height = 1024);
~CanvasOSMesa();
virtual void Initialize() override;
virtual void RefreshColorBuffer() const override;
virtual void Activate() override;
virtual void Finish() override;
vtkm::rendering::Canvas* NewCopy() const override;
private:
std::shared_ptr<detail::CanvasOSMesaInternals> Internals;
};
}
} //namespace vtkm::rendering
#endif //vtk_m_rendering_CanvasOSMesa_h