]> git.sesse.net Git - casparcg/blobdiff - core/producer/text/utils/texture_font.h
[text_producer] Don't upload texture atlas to GPU every time the text or tracking...
[casparcg] / core / producer / text / utils / texture_font.h
index d3e52cebc2c585f0548cc7ce99f48767ecd5aa7b..11855adfaee4c14957a94795a8a0388af44607cd 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "string_metrics.h"
 #include "text_info.h"
+#include "../../../frame/geometry.h"
 
 namespace caspar { namespace core { namespace text {
 
@@ -20,10 +21,12 @@ class texture_font
 
 public:
        texture_font(texture_atlas&, const text_info&, bool normalize_coordinates);
-       void load_glyphs(unicode_block block, const color<float>& col);
-       void set_tracking(int tracking);
-       std::vector<float> create_vertex_stream(const std::wstring& str, int x, int y, int parent_width, int parent_height, string_metrics* metrics);
+       void load_glyphs(unicode_block block, const color<double>& col);
+       void set_tracking(double tracking);
+       std::vector<frame_geometry::coord> create_vertex_stream(const std::wstring& str, int x, int y, int parent_width, int parent_height, string_metrics* metrics, double shear = 0.0);
        string_metrics measure_string(const std::wstring& str);
+       std::wstring get_name() const;
+       double get_size() const;
 
 private:
        struct impl;
@@ -254,4 +257,4 @@ enum class unicode_block
        Supplementary_Private_Use_Area_B
 };
 
-}}}
\ No newline at end of file
+}}}