| 12 | namespace ZEngine::Rendering::Graphics { |
| 13 | |
| 14 | GraphicContext* CreateContext() { |
| 15 | return new ZENGINE_OPENGL_CONTEXT(); |
| 16 | } |
| 17 | |
| 18 | GraphicContext* CreateContext(const CoreWindow* window) { |
| 19 | return new ZENGINE_OPENGL_CONTEXT(window); |
no outgoing calls
no test coverage detected