mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-13 05:57:10 +03:00
16 lines
229 B
C++
16 lines
229 B
C++
#pragma once
|
|
|
|
#include "gl_core_3_3.h"
|
|
|
|
namespace glrage {
|
|
namespace gl {
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
static const char* getErrorString(GLenum);
|
|
static void checkError(const char*);
|
|
};
|
|
|
|
} // namespace gl
|
|
} // namespace glrage
|