X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Ftests.h;fp=source%2Fcore%2Ftests.h;h=0000000000000000000000000000000000000000;hb=ce3658993ce2f6b7527a04a36a5e1af349c6f2e9;hp=7e38e81e41a0c956f36da24578d998f94d215fd6;hpb=2b2676392aff2eb6b38c3e463cc67f4d67a4ef8b;p=libs%2Fgl.git diff --git a/source/core/tests.h b/source/core/tests.h deleted file mode 100644 index 7e38e81e..00000000 --- a/source/core/tests.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef MSP_GL_TESTS_H_ -#define MSP_GL_TESTS_H_ - -#include "bindable.h" -#include "gl.h" -#include "predicate.h" - -namespace Msp { -namespace GL { - -/** -Tests fragment coordinates against a rectangle. Any fragments outside the -rectangle are discarded. -*/ -class ScissorTest: public Bindable -{ -private: - int left; - int bottom; - unsigned width; - unsigned height; - -public: - ScissorTest(); - ScissorTest(int, int, unsigned, unsigned); - - void bind() const; - - static void unbind(); -}; - -} // namespace GL -} // namespace Msp - -#endif