]> git.tdb.fi Git - libs/gl.git/blobdiff - source/blend.cpp
Refresh lighting and culling uniforms if the camera changes in pop_state
[libs/gl.git] / source / blend.cpp
index b2f59e17c5cb57250f20aba14ca158e81c818285..184d5ad534f1aca6bcf441726b54e8c80af94a1b 100644 (file)
@@ -1,13 +1,6 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2008, 2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
+#include <msp/gl/extensions/ext_blend_minmax.h>
+#include <msp/gl/extensions/ext_blend_subtract.h>
 #include "blend.h"
-#include "extension.h"
-#include "version_1_2.h"
 
 namespace Msp {
 namespace GL {
@@ -29,8 +22,10 @@ Blend::Blend(BlendEquation e, BlendFactor sf, BlendFactor df):
        src_factor(sf),
        dst_factor(df)
 {
-       if(eq!=ADD)
-               static RequireVersion _ver(1, 2);
+       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
@@ -38,7 +33,7 @@ void Blend::bind() const
        if(set_current(this))
        {
                glEnable(GL_BLEND);
-               if(glBlendEquation)
+               if(EXT_blend_minmax)
                        glBlendEquation(eq);
                glBlendFunc(src_factor, dst_factor);
        }