TRX/lib/glrage/glrage.cpp

20 lines
301 B
C++
Raw Normal View History

2021-11-12 20:03:04 +01:00
#include "GLRage.hpp"
namespace glrage {
GLRAPI Context& GLRage::getContext()
{
return ContextImpl::instance();
}
GLRAPI RuntimePatcher& GLRage::getPatcher()
{
return RuntimePatcher::instance();
}
GLRAPI Config& GLRage::getConfig()
{
return Config::instance();
}
} // namespace glrage