]> git.tdb.fi Git - libs/gl.git/commitdiff
Remove deprecated Font features
authorMikko Rasa <tdb@tdb.fi>
Wed, 28 Nov 2012 19:30:22 +0000 (21:30 +0200)
committerMikko Rasa <tdb@tdb.fi>
Wed, 28 Nov 2012 19:30:22 +0000 (21:30 +0200)
source/font.cpp
source/font.h

index d03ce281aeae55e6c95daf327ad401e63059164b..61534f0be574a8b0fd485086991157b47b174426 100644 (file)
@@ -123,10 +123,6 @@ void Font::Loader::init()
        add("texture",     &Loader::texture);
        add("texture",     &Loader::texture_ref);
        add("glyph",       &Loader::glyph);
-
-       // Deprecated aliases
-       add("default_size",   &Font::native_size);
-       add("texture_inline", &Loader::texture);
 }
 
 void Font::Loader::glyph(unsigned c)
index 21c202d795ef04a5fd4ec08957dddf44e0c9b0f3..a6873aacac6ed7921e035189d095d68aa37940bb 100644 (file)
@@ -63,7 +63,6 @@ public:
        const Texture2D &get_texture() const;
        void add_glyph(unsigned, float, float, float, float, float, float, float, float, float);
        float get_native_size() const { return native_size; }
-       float get_default_size() const { return native_size; }  // Deprecated
        float get_ascent() const { return ascent; }
        float get_descent() const { return descent; }