]> git.tdb.fi Git - libs/gl.git/blobdiff - source/blend.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / blend.cpp
diff --git a/source/blend.cpp b/source/blend.cpp
deleted file mode 100644 (file)
index cecd562..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#include "blend.h"
-#include "ext_blend_minmax.h"
-#include "ext_blend_subtract.h"
-
-namespace Msp {
-namespace GL {
-
-Blend::Blend():
-       eq(ADD),
-       src_factor(ONE),
-       dst_factor(ZERO)
-{ }
-
-Blend::Blend(BlendFactor sf, BlendFactor df):
-       eq(ADD),
-       src_factor(sf),
-       dst_factor(df)
-{ }
-
-Blend::Blend(BlendEquation e, BlendFactor sf, BlendFactor df):
-       eq(e),
-       src_factor(sf),
-       dst_factor(df)
-{
-       if(eq==MIN || eq==MAX)
-               static Require _req(EXT_blend_minmax);
-       else if(eq==SUBTRACT || eq==REVERSE_SUBTRACT)
-               static Require _req(EXT_blend_subtract);
-}
-
-void Blend::bind() const
-{
-       if(set_current(this))
-       {
-               glEnable(GL_BLEND);
-               if(glBlendEquation)
-                       glBlendEquation(eq);
-               glBlendFunc(src_factor, dst_factor);
-       }
-}
-
-void Blend::unbind()
-{
-       if(set_current(0))
-               glDisable(GL_BLEND);
-}
-
-const Blend &Blend::alpha()
-{
-       static Blend blend(SRC_ALPHA, ONE_MINUS_SRC_ALPHA);
-       return blend;
-}
-
-} // namespace GL
-} // namespace Msp