]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tests.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / tests.cpp
diff --git a/source/tests.cpp b/source/tests.cpp
deleted file mode 100644 (file)
index 5b34bf6..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include "tests.h"
-
-namespace Msp {
-namespace GL {
-
-void scissor(int left, int bottom, unsigned width, unsigned height)
-{
-       glScissor(left, bottom, width, height);
-}
-
-void alpha_func(Predicate func, float ref)
-{
-       glAlphaFunc(func, ref);
-}
-
-void depth_func(Predicate func)
-{
-       glDepthFunc(func);
-}
-
-} // namespace GL
-} // namespace Msp