mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-13 14:07:08 +03:00
20 lines
301 B
C++
20 lines
301 B
C++
![]() |
#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
|