]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/tests.h
Convert framebuffers and related functionality to new state management
[libs/gl.git] / source / core / tests.h
diff --git a/source/core/tests.h b/source/core/tests.h
deleted file mode 100644 (file)
index 7e38e81..0000000
+++ /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<ScissorTest>
-{
-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