当我尝试构建并运行我的OpenGL + GLEW + GLFW程序时,它构建得很好但不会运行,给我这个错误:"The program can't start because glew32.dll is missing from your computer. Try reinstalling the program to fix this problem."
我将glew32.lib
链接为静态库。我也在使用#define GLEW_STATIC
。
那么,为什么程序会提示输入DLL文件?
#include <iostream>
//#define GLEW_STATIC
// GLEW
#include <include/GL/glew.h>
// GLFW
#include <include/GLFW/glfw3.h>
//we define GLEW_STATIC, since we’re using the static version of the GLEW library.
#define GLEW_STATIC
// Is called whenever a key is pressed/released via GLFW
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode)
{
std::cout << key << std::endl;
if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS)
{
//we close GLFW by setting its WindowShouldClose
//property to true.
glfwSetWindowShouldClose(window, GL_TRUE);
}
}
// Window dimensions
const GLuint WIDTH = 800, HEIGHT = 600;
// The MAIN function, from here we start the application and run the game loop
int main()
{
std::cout << "Starting GLFW context, OpenGL 3.3" << std::endl;
// Initializes GLFW
glfwInit();
// Set all the required options for GLFW
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
// Create a GLFWwindow object that we can use for GLFW's functions
GLFWwindow * window = glfwCreateWindow(WIDTH, HEIGHT, "LearnOpenGL", nullptr, nullptr);
glfwMakeContextCurrent(window);
if (window == NULL)
{
std::cout << "Failed to create GLFW window" << std::endl;
glfwTerminate();
return -1;
}
// Set the required callback functions
glfwSetKeyCallback(window, key_callback);
// Set this to true so GLEW knows to use a modern approach to retrieving function pointers and extensions
glewExperimental = GL_TRUE;
// Initialize GLEW to setup the OpenGL Function pointers
if (glewInit() != GLEW_OK)
{
std::cout << "Failed to initialize GLEW" << std::endl;
return -1;
}
// Define the viewport dimensions
glViewport(0, 0, WIDTH, HEIGHT);
// Game loop
while (!glfwWindowShouldClose(window))
{
// Check if any events have been activiated (key pressed, mouse moved etc.) and call corresponding response functions
glfwPollEvents();
// Render
// Clear the colorbuffer
glClearColor(0.2f, 0.3f, 0.3f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
// Swap the screen buffers
glfwSwapBuffers(window);
}
// Terminate GLFW, clearing any resources allocated by GLFW.
glfwTerminate();
return 0;
}
答案 0 :(得分:7)
我正在关联glew32.lib
那是你出错的地方,glew32.lib是DLL版本的导入库。如果您不想依赖glew32.dll,那么您需要链接静态链接库。它的名字是 glew32s.lib
。否则定义GLEW_STATIC对此没有影响。
猜测这可能出错了,请注意SourceForge上可用的预构建二进制文件仅包含glew32.lib。您必须自己构建glew32s.lib。这通常是一个非常困难的要求,使用完全相同的编译器版本和编译器选项来构建其余代码非常重要。阅读项目的readme.txt文件以获取构建说明,无论如何使用提供的项目文件构建MSVC都没有问题。
库名称的完整列表:
您也可以选择构建这些库的MX(多个渲染上下文)版本,&#34; mx&#34;附在他们的名字上。
答案 1 :(得分:5)
从这里下载glew http://glew.sourceforge.net/
解压缩
转到glew-1.13.0 \ bin \ Release \ Win32(glew-1.13.0是你解压缩的文件夹)
有一个名为“glew32.dll”的文件
将“glew32.dll”复制到visual studio项目中的Debug文件夹中
C:\ Users \ Thien \ Documents \ Visual Studio 2015 \ Projects \ your_project_name \ Debug
然后按f5运行
答案 2 :(得分:3)
glew32.dll不是标准DLL。使用它的其他程序很可能是静态链接它或将DLL安装在它们的可执行文件旁边。我建议您将GLEW静态链接到您的程序。在http://glew.sourceforge.net/install.html,记录了如何进行静态或动态链接的构建。
答案 3 :(得分:0)
您可以下载并将glew32.dll文件放在安装程序的文件夹中,或将其粘贴到C:\ WINDOWS
中从此链接http://www.dll-files.com/dllindex/dll-files.shtml?glew32
下载答案 4 :(得分:0)
您可能必须将glew32.dll文件放在C:\ Windows \ System32文件夹中。
答案 5 :(得分:0)