X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftests.cpp;h=08580d4d80a0234758569dd62446d4d3b288a732;hp=1a2a58352e2605a54669093c5cb4e2011557c774;hb=fb5da1dff367740868f3cbc5badffb1b4837d82a;hpb=483a5855f408e98c348ee17719dc4ca1179ec630 diff --git a/source/tests.cpp b/source/tests.cpp index 1a2a5835..08580d4d 100644 --- a/source/tests.cpp +++ b/source/tests.cpp @@ -35,11 +35,6 @@ void AlphaTest::unbind() glDisable(GL_ALPHA_TEST); } -void alpha_func(Predicate func, float ref) -{ - glAlphaFunc(func, ref); -} - DepthTest::DepthTest(): write(true), @@ -77,11 +72,6 @@ void DepthTest::unbind() } } -void depth_func(Predicate func) -{ - glDepthFunc(func); -} - ScissorTest::ScissorTest(): left(0), @@ -112,10 +102,5 @@ void ScissorTest::unbind() glDisable(GL_SCISSOR_TEST); } -void scissor(int left, int bottom, unsigned width, unsigned height) -{ - glScissor(left, bottom, width, height); -} - } // namespace GL } // namespace Msp