TRX/lib/glrage_gl/Utils.hpp

17 lines
229 B
C++
Raw Normal View History

2021-11-12 20:03:04 +01:00
#pragma once
#include "gl_core_3_3.h"
namespace glrage {
namespace gl {
class Utils
{
public:
static const char* getErrorString(GLenum);
2021-11-14 23:42:18 +01:00
static void checkError(const char*);
2021-11-12 20:03:04 +01:00
};
} // namespace gl
2021-11-14 23:42:18 +01:00
} // namespace glrage