]> git.tdb.fi Git - libs/gl.git/commitdiff
Remove some deprecated stuff
authorMikko Rasa <tdb@tdb.fi>
Wed, 27 Nov 2013 09:56:01 +0000 (11:56 +0200)
committerMikko Rasa <tdb@tdb.fi>
Wed, 27 Nov 2013 09:56:01 +0000 (11:56 +0200)
source/light.h
source/misc.cpp
source/misc.h
source/object.cpp

index 2375c7c909899b7ac22fc3fc13992d8f3c31307f..fb3410c7332716d6e0cb69e90db5f0a33501573b 100644 (file)
@@ -47,9 +47,6 @@ public:
        void bind() const;
        void bind_to(unsigned) const;
 
-       // Deprecated
-       void set_position(float x, float y, float z, float w) { set_position(Vector4(x, y, z, w)); }
-
        static void activate(unsigned);
        static void unbind();
        static void unbind_from(unsigned);
index aca3df0f700af7b500f0aa2dba239865e84ab675..f27fa5e235820ebed59224fb365474712dd1f12e 100644 (file)
@@ -21,11 +21,6 @@ void set(GLenum state, bool value)
                disable(state);
 }
 
-void get(GLenum state, int &data)
-{
-       glGetIntegerv(state, &data);
-}
-
 void get(GLenum state, int *data)
 {
        glGetIntegerv(state, data);
index 464c08705ffd1b96efedcde880761c0ae994885f..cfefdbf22e116fc823326482bbb9939d7881e7ef 100644 (file)
@@ -10,9 +10,6 @@ void enable(GLenum);
 void disable(GLenum);
 void set(GLenum, bool);
 
-///Deprecated (can't properly pass an array through a reference)
-void get(GLenum, int &);
-
 void get(GLenum, int *);
 int get_i(GLenum);
 
index d35517bf3adeb43773760cc2d6648d65f05a1c06..637af62a3753becb9407e346fb471bad9213f94a 100644 (file)
@@ -157,9 +157,6 @@ void Object::Loader::init()
        add("mesh",     &Loader::mesh_lod);
        add("technique", &Loader::technique_inline);
        add("technique", &Loader::technique);
-
-       // Deprecated alias, will be removed
-       add("lod_mesh", &Loader::mesh_lod);
 }
 
 void Object::Loader::finish()