]> git.tdb.fi Git - libs/gl.git/blobdiff - source/ext_blend_subtract.cpp
Do not store generated files in the repository
[libs/gl.git] / source / ext_blend_subtract.cpp
diff --git a/source/ext_blend_subtract.cpp b/source/ext_blend_subtract.cpp
deleted file mode 100644 (file)
index f15f3f5..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "ext_blend_subtract.h"
-
-namespace Msp {
-namespace GL {
-
-Extension::SupportLevel init_ext_blend_subtract()
-{
-       if(is_version_at_least(1, 2))
-       {
-               return Extension::CORE;
-       }
-       if(is_supported("GL_EXT_blend_subtract"))
-       {
-               return Extension::EXTENSION;
-       }
-       return Extension::UNSUPPORTED;
-}
-
-Extension EXT_blend_subtract("GL_EXT_blend_subtract", init_ext_blend_subtract);
-
-} // namespace GL
-} // namespace Msp