]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tests.cpp
Set both min and mag filters when exporting textures
[libs/gl.git] / source / tests.cpp
index f8489ede9cfee6787520265d1bc5e1b5cc655a4a..8e24bb52facc436a0a75451a57726737a574bb22 100644 (file)
@@ -3,32 +3,6 @@
 namespace Msp {
 namespace GL {
 
-AlphaTest::AlphaTest():
-       pred(ALWAYS),
-       ref(0)
-{ }
-
-AlphaTest::AlphaTest(Predicate p, float r):
-       pred(p),
-       ref(r)
-{ }
-
-void AlphaTest::bind() const
-{
-       if(set_current(this))
-       {
-               glEnable(GL_ALPHA_TEST);
-               glAlphaFunc(pred, ref);
-       }
-}
-
-void AlphaTest::unbind()
-{
-       if(set_current(0))
-               glDisable(GL_ALPHA_TEST);
-}
-
-
 DepthTest::DepthTest():
        write(true),
        pred(LESS)