Fix opencsg example on Win32

This commit is contained in:
tamasmeszaros 2019-12-17 16:27:28 +01:00
parent 17de6ff51a
commit 558529146c
4 changed files with 51 additions and 33 deletions

View file

@ -303,6 +303,8 @@ public:
: m_camera(camera ? camera : std::make_shared<PerspectiveCamera>())
{}
~Display() override;
Camera * camera() { return m_camera.get(); }
virtual void swap_buffers() = 0;
@ -370,5 +372,6 @@ public:
void move_clip_plane(double z) { call_cameras(&Camera::set_clip_z, z); }
};
}} // namespace Slic3r::GL
#endif // GLSCENE_HPP