X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fgl_video_view.h;h=73db3535d2775c7fdc84b46482e7a1143948a4fd;hb=86a866d5f3f5bf2fec67d1c813524479c6727eab;hp=cdc9fd530ae3045157cdcf003d19421355df145d;hpb=a8e31120a793f09ab56cc2847d76944ba698ba95;p=dcpomatic.git diff --git a/src/wx/gl_video_view.h b/src/wx/gl_video_view.h index cdc9fd530..73db3535d 100644 --- a/src/wx/gl_video_view.h +++ b/src/wx/gl_video_view.h @@ -19,30 +19,48 @@ */ #include "video_view.h" +#include "lib/signaller.h" #include #include #include #include - +#include #undef None #undef Success class GLVideoView : public VideoView { public: - GLVideoView (wxWindow* parent); + GLVideoView (FilmViewer* viewer, wxWindow* parent); ~GLVideoView (); void set_image (boost::shared_ptr image); wxWindow* get () const { return _canvas; } + void update (); + void start (); + void stop (); + + bool display_next_frame (bool); + + bool vsync_enabled () const { + return _vsync_enabled; + } private: - void paint (wxPaintEvent& event); + void paint (); + void draw (); + void thread (); + wxGLContext* context () const; wxGLCanvas* _canvas; - wxGLContext* _context; - GLuint _id; - boost::optional _size; + + wxGLContext* _context; + mutable boost::mutex _context_mutex; + + GLuint _id; + boost::optional _size; + bool _vsync_enabled; + boost::thread* _thread; };