]> git.tdb.fi Git - libs/gl.git/blobdiff - source/extension.cpp
Rework exceptions
[libs/gl.git] / source / extension.cpp
index e47bbe197c5e7d924e3e7da49799beba76a26867..ef05e39bfca79705841ecf4a96ce682a8942a322 100644 (file)
@@ -9,10 +9,10 @@
 #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"
@@ -65,7 +65,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 +101,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)