glfwDefaultWindowHints();
glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
glfwWindowHint(GLFW_SAMPLES, 4);
glfwWindowHint(GLFW_VISIBLE, GL_FALSE);
//Window hints are used to manipulate the behavior of later created windows
//As the name suggests, they are only hints, not hard constraints, which mea...