Update null_opengl.cpp

Fix broken return type in impl of null_opengl
This commit is contained in:
McMassiveNZ
2023-05-08 19:59:53 +02:00
parent bde6c88b68
commit ab25ee9626
2 changed files with 955 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ public:
};
} // namespace ogl_starter
std::unique_ptr<ogl_starter::Window> oglsCreateWindow(ogl_starter::OpenGLCreateParams)
std::unique_ptr<ogl_starter::OpenGL> oglsCreateOpenGL(ogl_starter::OpenGLCreateParams)
{
auto result = std::make_unique<ogl_starter::NullOpenGLImpl>();
return result;