diff --git a/vtkm/rendering/testing/UnitTestMapperGLFW.cxx b/vtkm/rendering/testing/UnitTestMapperGLFW.cxx index acf1066da..c94ea8e14 100644 --- a/vtkm/rendering/testing/UnitTestMapperGLFW.cxx +++ b/vtkm/rendering/testing/UnitTestMapperGLFW.cxx @@ -58,10 +58,7 @@ void RenderTests() vtkm::rendering::ColorTable colorTable("thermal"); glfwInit(); - glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); - glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); - glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); - glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2); + glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_FALSE); GLFWwindow *window = glfwCreateWindow(WIDTH, HEIGHT, "GLFW Test", NULL, NULL); glfwMakeContextCurrent(window); glfwSetKeyCallback(window, keyCallback);