使用 C++,我正在尝试使用 DevIL 将纹理加载到 OpenGL 中。在四处寻找不同的代码段之后,我完成了一些代码(如下所示),但它似乎并不完全有效。
加载纹理(Texture2D 类的一部分):
void Texture2D::LoadTexture(const char *file_name)
{
unsigned int image_ID;
ilInit();
iluInit();
ilutInit();
ilutRenderer(ILUT_OPENGL);
image_ID = ilutGLLoadImage((char*)file_name);
sheet.texture_ID = image_ID;
sheet.width = ilGetInteger(IL_IMAGE_WIDTH);
sheet.height = ilGetInteger(IL_IMAGE_HEIGHT);
}
这可以编译并正常工作。我确实意识到我应该只执行一次 ilInit()、iluInit() 和 ilutInit(),但如果我删除这些行,程序会在加载任何图像时立即中断(编译正常,但运行时出错)。
在 OpenGL 中显示纹理(同一类的一部分):
void Texture2D::Draw()
{
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
glPushMatrix();
u = v = 0;
// this is the origin point (the position of the button)
VectorXYZ point_TL; // Top Left
VectorXYZ point_BL; // Bottom Left
VectorXYZ point_BR; // Bottom Right
VectorXYZ point_TR; // Top Right
/* For the sake of simplicity, I've removed the code calculating the 4 points of the Quad. Assume that they are found correctly. */
glColor3f(1,1,1);
// bind the appropriate texture frame
glBindTexture(GL_TEXTURE_2D, sheet.texture_ID);
// draw the image as a quad the size of the first loaded image
glEnable(GL_TEXTURE_2D);
glBegin(GL_QUADS);
glTexCoord2f (0, 0);
glVertex3f (point_TL.x, point_TL.y, point_TL.z); // Top Left
glTexCoord2f (0, 1);
glVertex3f (point_BL.x, point_BL.y, point_BL.z); // Bottom Left
glTexCoord2f (1, 1);
glVertex3f (point_BR.x, point_BR.y, point_BR.z); // Bottom Right
glTexCoord2f (1, 0);
glVertex3f (point_TR.x, point_TR.y, point_TR.z); // Top Right
glEnd();
glPopMatrix();
glDisable(GL_BLEND);
glDisable(GL_TEXTURE_2D);
}
目前,四边形出现了,但它完全是白色的(它给出的背景颜色)。我正在加载的图像存在并且加载良好(使用加载的大小值验证)。
我应该注意的另外几件事:1)我正在使用深度缓冲区。我听说这不适合 GL_BLEND?2) 我真的很想使用 ilutGLLoadImage 函数。3) 我很欣赏示例代码,因为我是 openGL 和 DevIL 整体的新手。