summaryrefslogtreecommitdiff
path: root/src/wx/video_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-13 11:36:09 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-13 11:36:09 +0100
commit5de2fd90b92829cea8ab297c6fce81c582332cb7 (patch)
tree20e3f27fd3a254c21c0028d272e6844e660bc0b6 /src/wx/video_view.h
parentcb0a41355327f0308e5b56c21bff1d1ac004a9cb (diff)
Build fixes related to simple/GL view.
Diffstat (limited to 'src/wx/video_view.h')
-rw-r--r--src/wx/video_view.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/wx/video_view.h b/src/wx/video_view.h
index af6655ec4..892ffab12 100644
--- a/src/wx/video_view.h
+++ b/src/wx/video_view.h
@@ -33,6 +33,9 @@ class VideoView
public:
VideoView (FilmViewer* viewer)
: _viewer (viewer)
+#ifdef DCPOMATIC_VARIANT_SWAROOP
+ , _in_watermark (false)
+#endif
{}
virtual ~VideoView () {}
@@ -45,6 +48,12 @@ public:
protected:
FilmViewer* _viewer;
+
+#ifdef DCPOMATIC_VARIANT_SWAROOP
+ bool _in_watermark;
+ int _watermark_x;
+ int _watermark_y;
+#endif
};
#endif