X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fblend.cpp;h=3327885c74c1ef34b7a5c1d111f22935a8639de0;hb=HEAD;hp=854b2032d4e26ea31168beaf141790d6ffdb536f;hpb=dc1d1159a61f378bda11e5989ad694a86b9a3c77;p=libs%2Fgl.git diff --git a/source/blend.cpp b/source/blend.cpp deleted file mode 100644 index 854b2032..00000000 --- a/source/blend.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include "blend.h" -#include "extension.h" -#include "version_1_2.h" - -namespace Msp { -namespace GL { - -void blend_equation(BlendEquation eq) -{ - static RequireVersion _ver(1, 2); - glBlendEquation(eq); -} - -void blend_func(BlendFactor src, BlendFactor dst) -{ - glBlendFunc(src, dst); -} - -} // namespace GL -} // namespace Msp