1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
---|---|
2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
3 | #include "BsGLRenderAPIFactory.h" |
4 | #include "BsGLRenderAPI.h" |
5 | |
6 | namespace bs { namespace ct |
7 | { |
8 | constexpr const char* GLRenderAPIFactory::SystemName; |
9 | |
10 | void GLRenderAPIFactory::create() |
11 | { |
12 | RenderAPI::startUp<GLRenderAPI>(); |
13 | } |
14 | |
15 | GLRenderAPIFactory::InitOnStart GLRenderAPIFactory::initOnStart; |
16 | }} |