X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fextension.cpp;h=c846c59d72398dc0c1cbdbf59d03859871cc3ca2;hb=ac11296dca7c7a594ff1b20bead87e1e161b4bef;hp=e47bbe197c5e7d924e3e7da49799beba76a26867;hpb=48d253c9f19c04c6940bfc932a78c51ea24e2e75;p=libs%2Fgl.git diff --git a/source/extension.cpp b/source/extension.cpp index e47bbe19..c846c59d 100644 --- a/source/extension.cpp +++ b/source/extension.cpp @@ -6,13 +6,14 @@ #include #include #include "arb_shader_objects.h" +#include "arb_uniform_buffer_object.h" #include "arb_vertex_buffer_object.h" #include "arb_vertex_program.h" #include "arb_vertex_shader.h" +#include "error.h" #include "ext_framebuffer_blit.h" #include "ext_framebuffer_multisample.h" #include "ext_framebuffer_object.h" -#include "except.h" #include "extension.h" #include "gl.h" #include "nv_primitive_restart.h" @@ -55,6 +56,8 @@ bool is_supported(const string &ext) init_arb_vertex_buffer_object(); if(extensions.count("GL_NV_primitive_restart")) init_nv_primitive_restart(); + if(extensions.count("GL_ARB_uniform_buffer_object")) + init_arb_uniform_buffer_object(); init_done = true; } @@ -65,7 +68,7 @@ bool is_supported(const string &ext) void require_extension(const string &ext) { if(!is_supported(ext)) - throw UnsupportedExtension(ext); + throw unsupported_extension(ext); } const Version &get_gl_version() @@ -101,7 +104,7 @@ bool is_version_at_least(unsigned a, unsigned b) void require_version(unsigned a, unsigned b) { if(!is_version_at_least(a, b)) - throw UnsupportedExtension(format("OpenGL %d.%d", a, b)); + throw unsupported_extension(format("OpenGL %d.%d", a, b)); } ExtFunc *get_proc_address(const string &name)