GLFW OpenGL с NuGet не строит - PullRequest
       17

GLFW OpenGL с NuGet не строит

0 голосов
/ 27 сентября 2018

Цель моего кода - показать окно.

Я использую Visual Studio 2017 и установил пакет nupengl.core, а также GLFW и glew.

Я могу отобразить окно, но когда я добавляю этот код:

glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE);

do {
    // Clear the screen. It's not mentioned before Tutorial 02, but it can cause flickering, so it's there nonetheless.
    glClear(GL_COLOR_BUFFER_BIT);

    // Draw nothing, see you in tutorial 2 !

    // Swap buffers
    glfwSwapBuffers(window);
    glfwPollEvents();

} // Check if the ESC key was pressed or the window was closed
while (glfwGetKey(window, GLFW_KEY_ESCAPE) != GLFW_PRESS &&
    glfwWindowShouldClose(window) == 0);

Я получаю эту ошибку:

LNK2019: unresolved external symbol __imp__glClear@4 opengl_nugent referenced in function_main

Почему я получаю это сообщение об ошибке и почемуфункция glClear не работает?

...