25 lines
560 B
C++
25 lines
560 B
C++
#include "RenderEngineBase.hpp"
|
|
|
|
#include <stdexcept>
|
|
|
|
RenderEngineBase::RenderEngineBase()
|
|
{
|
|
if (!glfwInit())
|
|
throw std::runtime_error("Fail init glfw");
|
|
|
|
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
|
|
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
|
|
|
|
window_ = glfwCreateWindow(800, 600, "UwU Engine", nullptr, nullptr);
|
|
if (window_ == nullptr)
|
|
throw std::runtime_error("Fail create window");
|
|
}
|
|
|
|
RenderEngineBase::~RenderEngineBase()
|
|
{
|
|
if (window_ != nullptr)
|
|
glfwDestroyWindow(window_);
|
|
|
|
glfwTerminate();
|
|
}
|