ComplexPlotting/src/main.cpp

47 lines
969 B
C++
Raw Normal View History

2020-08-30 11:22:16 +00:00
#include <iostream>
2020-08-31 16:27:16 +00:00
#include <vector>
#include <algorithm>
#include <glad/glad.h>
2020-08-31 15:55:45 +00:00
#include <glfw/glfw3.h>
2020-08-30 11:22:16 +00:00
2020-08-31 16:27:16 +00:00
#include "PlotWindow.hpp"
2020-08-30 11:22:16 +00:00
int main(int argc, char** argv)
{
2020-08-31 15:55:45 +00:00
int result = glfwInit();
if (result != GL_TRUE)
2020-08-30 11:22:16 +00:00
{
2020-08-31 15:55:45 +00:00
const char* buffer = new char[512];
glfwGetError(&buffer);
std::cout << "Failed to initialize GLFW: " << std::endl << buffer << std::endl;
2020-08-30 11:22:16 +00:00
}
2020-08-31 16:27:16 +00:00
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 6);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
std::vector<PlotWindow> windows;
windows.emplace_back(500, 500, 1);
windows.emplace_back(500, 500, 2);
windows.emplace_back(500, 500, 3);
while (!windows.empty())
{
glfwPollEvents();
for (std::vector<PlotWindow>::iterator it = windows.begin(); it != windows.end();)
{
if (it->ShouldClose())
{
it->Destroy();
it = windows.erase(it);
continue;
}
it->GiveContext();
it->Display();
it++;
}
}
2020-08-30 11:22:16 +00:00
}