11 lines
292 B
C++
11 lines
292 B
C++
#include "OGLObjects.hpp"
|
|
|
|
namespace nb {
|
|
|
|
const std::string OGLError::type = "nb::OGLError";
|
|
const ErrorCodeMap OGLError::ErrorMessages = {
|
|
{ OGLError::Codes::UNDEFINED, "Error" },
|
|
{OGLError::Codes::HANGING_OBJECT, "Attempting to leave a hanging OpenGL object"}
|
|
};
|
|
|
|
} // namespace nb
|