]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tests.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / tests.h
index 75d15036c64a12a2148abfaa0ce6f7d88f20ca1f..0d7e2384dcaea1bf3990048d9f396e377b1035a7 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007, 2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GL_TESTS_H_
 #define MSP_GL_TESTS_H_
 
@@ -15,13 +8,6 @@ Distributed under the LGPL
 namespace Msp {
 namespace GL {
 
-enum
-{
-       SCISSOR_TEST = GL_SCISSOR_TEST,
-       ALPHA_TEST   = GL_ALPHA_TEST,
-       DEPTH_TEST   = GL_DEPTH_TEST
-};
-
 /**
 Tests incoming fragment alpha values against a reference.  If the test fails,
 the fragment is discarded.
@@ -41,8 +27,6 @@ public:
        static void unbind();
 };
 
-void alpha_func(Predicate func, float ref);
-
 
 /**
 Tests incoming fragment depth values against the depth buffer.  If the test
@@ -64,8 +48,6 @@ public:
        static void unbind();
 };
 
-void depth_func(Predicate func);
-
 
 /**
 Tests fragment coordinates against a rectangle.  Any fragments outside the
@@ -88,8 +70,6 @@ public:
        static void unbind();
 };
 
-void scissor(int left, int bottom, unsigned width, unsigned height);
-
 } // namespace GL
 } // namespace Msp