X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fextension.cpp;h=fbed6e2648c610595ee03451429d19c681416c92;hp=c2f1f6005f02260f034fe5c5d6adf27054ddc175;hb=7f888de83aa5398fafaa7661547ee80395377b5c;hpb=90a26a1740d5843b60d07d9c39d8567bfed5189c diff --git a/source/extension.cpp b/source/extension.cpp index c2f1f600..fbed6e26 100644 --- a/source/extension.cpp +++ b/source/extension.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgl -Copyright © 2007, 2009-2010 Mikko Rasa, Mikkosoft Productions +Copyright © 2007, 2009-2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -16,6 +16,8 @@ Distributed under the LGPL #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 +54,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"))