ComplexPlotting/src/main.cpp

13 lines
281 B
C++
Raw Normal View History

2020-08-30 11:22:16 +00:00
#include <iostream>
2020-08-31 15:55:45 +00:00
#include <glfw/glfw3.h>
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
}
}