]> 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 899ccf5..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#define GL_GLEXT_PROTOTYPES
-#include "blend.h"
-#include "extension.h"
-#include "version_1_2.h"
-
-namespace Msp {
-namespace GL {
-
-void blend_equation(BlendEquation eq)
-{
-       require_version(1, 2);
-       glBlendEquation(eq);
-}
-
-void blend_func(BlendFactor src, BlendFactor dst)
-{
-       glBlendFunc(src, dst);
-}
-
-} // namespace GL
-} // namespace Msp