Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / render_text.h
index f9c35005ebb84ef37415303a293947bba598f294..7187ca30b5c0c28ea2a9d9ff5ddcbd1fc43dde3a 100644 (file)
 
 #include "position_image.h"
 #include "dcpomatic_time.h"
-#include "plain_text.h"
+#include "string_text.h"
 #include <dcp/util.h>
 
-class Font;
+namespace dcpomatic {
+       class Font;
+}
 
-std::string marked_up (std::list<PlainText> subtitles, int target_height, float fade_factor);
+std::string marked_up (std::list<StringText> subtitles, int target_height, float fade_factor);
 std::list<PositionImage> render_text (
-       std::list<PlainText>, std::list<boost::shared_ptr<Font> > fonts, dcp::Size, DCPTime, int
+       std::list<StringText>, std::list<boost::shared_ptr<dcpomatic::Font> > fonts, dcp::Size, dcpomatic::DCPTime, int
        );