X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftests.cpp;h=8e24bb52facc436a0a75451a57726737a574bb22;hp=a74400636c4b847d44bf3ca40bce53cc41f587d0;hb=HEAD;hpb=0f1c018d65658ae564881649443fde3f7d2182a8 diff --git a/source/tests.cpp b/source/tests.cpp deleted file mode 100644 index a7440063..00000000 --- a/source/tests.cpp +++ /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, sizei width, sizei 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