我正在尝试使用 DevIL 加载图像,然后创建纹理。我有一个名为 的类Texture
,我在构造函数中做所有这些事情。已创建有效的上下文。我在第一次调用时遇到了访问冲突glTextureParameteri()
,所以我猜纹理没有正确绑定。我只是看不出它为什么不绑定。
这是构造函数:
Texture::Texture(const std::string& filename){
//DevIL handle for the image
unsigned int ilID;
ilGenImages(1, &ilID);
ilBindImage(ilID);
ilEnable(IL_ORIGIN_SET);
ilOriginFunc(IL_ORIGIN_LOWER_LEFT);
if (!ilLoad(IL_BMP, (ILstring)filename.c_str())){
DebugUtility::gl_log_err("Failed to load image &s\n", filename.c_str()); //Just function that prints to log file
return;
}
ilConvertImage(IL_RGBA, IL_UNSIGNED_BYTE);
glGenTextures(1, &texture);
//"texture" is global GLuint
glBindTexture(GL_TEXTURE_2D, texture);
//LINE BELOW CAUSES ACCESS VIOLATION!
glTextureParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTextureParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTextureParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTextureParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
ilGetInteger(IL_IMAGE_WIDTH), ilGetInteger(IL_IMAGE_HEIGHT),
0, GL_RGBA, GL_UNSIGNED_BYTE, ilGetData());
ilDeleteImages(1, &ilID);
//Again, prints to log file
DebugUtility::gl_log("Succefully loaded and created texture %s", filename.c_str());
}
ilLoad
返回 true,因为该 if 块中的代码未执行。这是错误(我使用的是 Visual Studio 2013):
projectSDL.exe 中 0x74E1CB49 处的未处理异常:0xC0000005:访问冲突执行位置 0x00000000。