]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tests.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / tests.h
diff --git a/source/tests.h b/source/tests.h
deleted file mode 100644 (file)
index 0fa05b4..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_TESTS_H_
-#define MSP_GL_TESTS_H_
-
-#include <GL/gl.h>
-#include "predicate.h"
-#include "types.h"
-
-namespace Msp {
-namespace GL {
-
-enum
-{
-       SCISSOR_TEST = GL_SCISSOR_TEST,
-       ALPHA_TEST   = GL_ALPHA_TEST,
-       DEPTH_TEST   = GL_DEPTH_TEST
-};
-
-void scissor(int left, int bottom, sizei width, sizei height);
-
-void alpha_func(Predicate func, float ref);
-
-void depth_func(Predicate func);
-
-} // namespace GL
-} // namespace Msp
-
-#endif