X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fblend.cpp;h=841d88b86e1f7e8070edf60c6c390f010f8c33dc;hb=a8c4b199788c87f0a22b8c8df1509905b6fb488b;hp=c9407c2130fe3e7bb9d0770ee194ded9bd8d2649;hpb=1bff68e595a66f3755743a7ee0f974eb876f3520;p=libs%2Fgl.git diff --git a/source/blend.cpp b/source/blend.cpp index c9407c21..841d88b8 100644 --- a/source/blend.cpp +++ b/source/blend.cpp @@ -5,14 +5,16 @@ 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); }