X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fblend.cpp;h=3327885c74c1ef34b7a5c1d111f22935a8639de0;hp=c9407c2130fe3e7bb9d0770ee194ded9bd8d2649;hb=HEAD;hpb=1bff68e595a66f3755743a7ee0f974eb876f3520 diff --git a/source/blend.cpp b/source/blend.cpp deleted file mode 100644 index c9407c21..00000000 --- a/source/blend.cpp +++ /dev/null @@ -1,25 +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" - -namespace Msp { -namespace GL { - -void blend_equation(BlendEquation eq) -{ - glBlendEquation(eq); -} - -void blend_func(BlendFactor src, BlendFactor dst) -{ - glBlendFunc(src, dst); -} - -} // namespace GL -} // namespace Msp