]> git.tdb.fi Git - libs/gl.git/blobdiff - source/extension.cpp
Update header names
[libs/gl.git] / source / extension.cpp
index c2f1f6005f02260f034fe5c5d6adf27054ddc175..e47bbe197c5e7d924e3e7da49799beba76a26867 100644 (file)
@@ -1,21 +1,16 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007, 2009-2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <set>
 #ifndef WIN32
 #define GLX_GLXEXT_PROTOTYPES
 #include <GL/glx.h>
 #endif
-#include <msp/strings/formatter.h>
+#include <msp/strings/format.h>
 #include <msp/strings/utils.h>
 #include "arb_shader_objects.h"
 #include "arb_vertex_buffer_object.h"
 #include "arb_vertex_program.h"
 #include "arb_vertex_shader.h"
+#include "ext_framebuffer_blit.h"
+#include "ext_framebuffer_multisample.h"
 #include "ext_framebuffer_object.h"
 #include "except.h"
 #include "extension.h"
@@ -52,6 +47,10 @@ bool is_supported(const string &ext)
                        init_arb_vertex_program();
                if(extensions.count("GL_EXT_framebuffer_object"))
                        init_ext_framebuffer_object();
+               if(extensions.count("GL_EXT_framebuffer_blit"))
+                       init_ext_framebuffer_blit();
+               if(extensions.count("GL_EXT_framebuffer_multisample"))
+                       init_ext_framebuffer_multisample();
                if(extensions.count("GL_ARB_vertex_buffer_object"))
                        init_arb_vertex_buffer_object();
                if(extensions.count("GL_NV_primitive_restart"))