X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fwindingtest.cpp;h=0b8218adbf2773971b589c89cccefa134d403788;hb=HEAD;hp=b54f71217f5b8387c054dec03eaea18380cd576c;hpb=635d00bc1a9ba43ef1224681a14d0710a098cf87;p=libs%2Fgl.git diff --git a/source/windingtest.cpp b/source/windingtest.cpp deleted file mode 100644 index b54f7121..00000000 --- a/source/windingtest.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include "windingtest.h" - -namespace Msp { -namespace GL { - -void operator>>(const LexicalConverter &conv, FaceWinding &winding) -{ - if(conv.get()=="CLOCKWISE") - winding = CLOCKWISE; - else if(conv.get()=="COUNTERCLOCKWISE") - winding = COUNTERCLOCKWISE; - else - throw InvalidParameterValue("Invalid FaceWinding"); -} - -WindingTest::WindingTest(): - test(false), - winding(COUNTERCLOCKWISE) -{ } - -WindingTest::WindingTest(FaceWinding w): - test(true), - winding(w) -{ } - -void WindingTest::bind() const -{ - if(set_current(this)) - { - if(test) - { - glEnable(GL_CULL_FACE); - glFrontFace(winding); - } - else - glDisable(GL_CULL_FACE); - } -} - -void WindingTest::unbind() -{ - if(set_current(0)) - glDisable(GL_CULL_FACE); -} - -WindingTest &WindingTest::clockwise() -{ - static WindingTest test(CLOCKWISE); - return test; -} - -WindingTest &WindingTest::counterclockwise() -{ - static WindingTest test(COUNTERCLOCKWISE); - return test; -} - -} // namespace GL -} // namespace Msp