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