]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Graphic/Text.hpp
Cleaned up a bit Text class. Using glPrintOutlined everywhere.
[lugaru.git] / Source / Graphic / Text.hpp
index 73dc621b8b91d593fa9044d03b58507f1ca120a0..ea23c6f918bdcf4dd5b876b5d6dfc3987092bc13 100644 (file)
@@ -36,12 +36,10 @@ public:
 
     void LoadFontTexture(const std::string& fileName);
     void BuildFont();
-    void glPrint(float x, float y, const std::string& string, int set, float size, float width, float height);
-    void glPrintOutline(float x, float y, const std::string& string, int set, float size, float width, float height);
-    void glPrint(float x, float y, const std::string& string, int set, float size, float width, float height, int start, int end);
-    void glPrintOutline(float x, float y, const std::string& string, int set, float size, float width, float height, int start, int end);
-    void glPrintOutlined(float x, float y, const std::string& string, int set, float size, float width, float height);
-    void glPrintOutlined(float r, float g, float b, float x, float y, const std::string& string, int set, float size, float width, float height);
+    void glPrint(float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1);
+    void glPrintOutline(float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1);
+    void glPrintOutlined(float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1);
+    void glPrintOutlined(float r, float g, float b, float a, float x, float y, const std::string& string, int set, float size, float width, float height, int start = 0, int end = -1);
 
     Text();
     ~Text();