]> git.tdb.fi Git - libs/gl.git/commitdiff
Remove get(int *)
authorMikko Rasa <tdb@tdb.fi>
Thu, 28 Nov 2013 12:42:58 +0000 (14:42 +0200)
committerMikko Rasa <tdb@tdb.fi>
Thu, 28 Nov 2013 12:42:58 +0000 (14:42 +0200)
By contrast to the previous commit, this was rather useless and not
actually used anywhere in the code.

source/misc.cpp
source/misc.h

index 3af18765f8fa468ea657dbf71f0f02c992c44fdb..39810be3d82b814ef6555032ab0cc422e40e7b62 100644 (file)
@@ -22,15 +22,10 @@ void set(GLenum state, bool value)
                disable(state);
 }
 
-void get(GLenum state, int *data)
-{
-       glGetIntegerv(state, data);
-}
-
 int get_i(GLenum state)
 {
        int data;
-       get(state, &data);
+       glGetIntegerv(state, &data);
        return data;
 }
 
index 86e09c044752f4844342a6869d449bb25ac34ba6..32adc9bf04794a37ff5f1d3cdd718dddacf03d92 100644 (file)
@@ -10,7 +10,6 @@ void enable(GLenum);
 void disable(GLenum);
 void set(GLenum, bool);
 
-void get(GLenum, int *);
 int get_i(GLenum);
 int get_shader_i(unsigned, GLenum);
 int get_program_i(unsigned, GLenum);