将png作为纹理加载并将其绑定到球体

时间:2012-11-09 15:21:39

标签: c++ opengl

我找不到任何关于如何加载PNG文件并将其用作纹理以将其绑定到球体的体面教程。有没有库函数可以做到这一点? 我将如何将其绑定到球体? 我已经开始使用它并且它没有工作,没有错误但纹理没有加载到球体上。 在glutMainLoop()

之前,我用特定文件调用LoadTexture

这是我加载文件的代码:

GLuint LoadTexture( const char * filename, int width, int height )
    {
GLuint texture;
unsigned char * data;
FILE * file;

//The following code will read in our PNG file
file = fopen( filename, "rb" );
if ( file == NULL ) return 0;
data = (unsigned char *)malloc( width * height * 3 );
fread( data, width * height * 3, 1, file );
fclose( file );

glGenTextures( 1, &texture ); //generate the texture with 

glBindTexture( GL_TEXTURE_2D, texture ); //bind the texture

glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, 
GL_MODULATE ); //set texture environment parameters



//even better quality, but this will do for now.
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,
 GL_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,
 GL_LINEAR );

//Here we are setting the parameter to repeat the texture 
//to the edge of our shape. 
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, 
 GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, 
 GL_REPEAT );

//Generate the texture
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0,
 GL_RGB, GL_UNSIGNED_BYTE, data);
free( data ); //free the texture
return texture; //return whether it was successfull

}

这里是我创建球体的地方

void renderScene(void) {

// Clear Color and Depth Buffers
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

 glEnable( GL_TEXTURE_2D );
// Reset transformations
glLoadIdentity();
glBindTexture( GL_TEXTURE_2D, texture );
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);

glPushMatrix();
glTranslatef(0.0,2.0,-6);
glRotatef(angle, 0.0f, 2.0, -6.0f);
glutSolidSphere(1,50,50);
glPopMatrix();


angle+=0.4f;
glDisable(GL_TEXTURE_2D);
glutSwapBuffers();
 }

我做过任何一项吗?

4 个答案:

答案 0 :(得分:5)

您正在将压缩的PNG数据提供给OpenGL。它必须先解压缩,因为OpenGL纹理函数无法理解PNG。您可以使用某些图像库对其进行解压缩,例如stb_image.c

答案 1 :(得分:4)

PNG是压缩文件,您不能只读取它们并期望OpenGL知道如何解码它们。加载PNG的推荐方法是使用libpng

这是使用libpng的example,它演示了将PNG文件同步读入2D数组。 OpenGL需要一个扁平的1D阵列,所以你需要自己压扁它,但这非常简单。

答案 2 :(得分:3)

我意识到有一百万个图书馆被抛向你,但我强烈推荐SOIL。加载png就像

一样简单
GLuint tex_2d = SOIL_load_OGL_texture( "img.png", SOIL_LOAD_AUTO, SOIL_CREATE_NEW_ID, SOIL_FLAG_INVERT_Y);

答案 3 :(得分:0)

我建议使用像DevIL这样的图像加载库,它可以为你完成所有的脏工作。我也建议使用modern OpenGL API,但这最终是你的决定:)