]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexarray.cpp
Rework exceptions
[libs/gl.git] / source / vertexarray.cpp
index f3476268b8c5c30071ba70a7c14c9e349d6a9359..7716c5b2e4c68f30fcee9ada52213532dec53e29 100644 (file)
@@ -1,5 +1,6 @@
 #include "arb_vertex_program.h"
 #include "buffer.h"
+#include "error.h"
 #include "extension.h"
 #include "gl.h"
 #include "version_1_2.h"
@@ -75,7 +76,7 @@ void VertexArray::reset(const VertexFormat &f)
 void VertexArray::apply() const
 {
        if(format.empty())
-               throw InvalidState("Trying to apply a vertex array with no data");
+               throw invalid_operation("VertexArray::apply");
 
        if(vbuf)
        {