vtk-m/vtkm/rendering/BitmapFontFactory.h

29 lines
768 B
C
Raw Normal View History

2019-04-15 23:24:21 +00:00
//============================================================================
// 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.
2019-04-15 23:24:21 +00:00
//============================================================================
#ifndef vtk_m_BitmapFontFactory_h
#define vtk_m_BitmapFontFactory_h
#include <vtkm/rendering/BitmapFont.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace rendering
{
class VTKM_RENDERING_EXPORT BitmapFontFactory
{
public:
2016-08-26 19:30:52 +00:00
static vtkm::rendering::BitmapFont CreateLiberation2Sans();
};
2017-05-18 14:29:41 +00:00
}
} //namespace vtkm::rendering
#endif