0

我想为一个带有纹理的方形框(即 .raw 图像文件)制作动画。我的背景还包括一个更大的盒子,上面还有一个图像。

我正在使用 timer() 函数来为盒子设置动画。问题是当我不断增加背景图像时,我的动画会变慢。我怎样才能提高它的速度..?

raw_texture_load

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

  // open texture data
  file = fopen( filename, "rb" );
  if ( file == NULL ) return 0;

  // allocate buffer

  data= (unsigned char*) malloc(width * height*3);

 // read texture data
 fread( data, width * height*3 , 1, file );
 fclose( file );

 // allocate a texture name
 glGenTextures( 1, &texture );

 // select our current texture
 glBindTexture( GL_TEXTURE_2D, texture );

// select modulate to mix texture with color for shading
glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE );

// when texture area is small, bilinear filter the closest MIP map
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,
               GL_LINEAR_MIPMAP_NEAREST );
// when texture area is large, bilinear filter the first MIP map
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );

// if wrap is true, the texture wraps over at the edges (repeat)
//       ... false, the texture ends at the edges (clamp)
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,
                GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,
                GL_REPEAT );

// build our texture MIP maps
gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width,
height, GL_RGB, GL_UNSIGNED_BYTE, data );

// free buffer
free( data );

return texture;

}

主要代码

 .
 .
 GLuint texture1 ;
 GLuint texture2 ;
 GLuint raw_texture_load1( const char * filename, int width , int height );
 GLuint raw_texture_load2( const char * filename, int width , int height );

 int refreshMills = 10 ;

 .
 .
 .
 void initGL() {
  glClearColor(0.0f, 0.0f, 1.0f, 0.0f);
  texture1 = raw_texture_load1("level.raw", 700, 700);
  texture2 = raw_texture_load2("mario2.raw", 100, 100);
}


 void display()
 {
glClear(GL_COLOR_BUFFER_BIT);   // Clear the color buffer
glMatrixMode(GL_MODELVIEW);     // To operate on Model-View matrix
glLoadIdentity();
glClear(GL_COLOR_BUFFER_BIT);

glEnable(GL_TEXTURE_2D);

glBindTexture(GL_TEXTURE_2D , texture1);
glBegin(GL_QUADS) ;
  glTexCoord2d(0,1);glVertex3f(-1.0, -1.0, 0.0);
  glTexCoord2d(1,1);glVertex3f(1.0, -1.0, 0.0);
  glTexCoord2d(1,0);glVertex3f(1.0, 1.0, 0.0);
  glTexCoord2d(0,0);glVertex3f(-1.0, 1.0, 0.0);
  glEnd() ;
  glDisable(GL_TEXTURE_2D);
  glPopMatrix() ;


     glEnable(GL_TEXTURE_2D);
    glBindTexture(GL_TEXTURE_2D , texture2) ;
    glBegin(GL_QUADS); 
   glTexCoord2d(0,1);glVertex3f(0.2+move, 0.0, 0.0);
  glTexCoord2d(1,1);glVertex3f(0.0+move, 0.0, 0.0);
  glTexCoord2d(1,0);glVertex3f(0.0+move, 0.2, 0.0);
  glTexCoord2d(0,0);glVertex3f(0.2+move, 0.2, 0.0);
  glEnd();  
  glDisable(GL_TEXTURE_2D);
  glPopMatrix() ;
  glutSwapBuffers() ;

  }



  void Timer(int value)
   {
   glutPostRedisplay();      // Post re-paint request to activate display()
   glutTimerFunc(refreshMills, Timer, 0); // next Timer call milliseconds later
   }
4

2 回答 2

1

问题是,随着我不断增加背景图像,我的动画变慢了。我怎样才能提高它的速度?

这里的关键字是fillrate。背景越大,GPU 必须从 RAM 传输到 RAM 的像素就越多。因为填充率变化很大,所以使用静态计时器不会产生好的结果。正确的方法是测量渲染帧之间的时间并将其用作动画的基础。

于 2013-03-25T19:29:38.220 回答
0

正如 datenwolf 已经指出的那样,您的表现是有限的。

level.raw 必须有多“锐利”?如果(像大多数背景一样)您可以在没有太多细节的情况下通过,则将其从 700x700 缩小到 512x512。如果您可以使用 256x256,也可以尝试一下。

这个较小的二次方大小的图像应该可以提供更好的纹理缓存性能,从而提高您的填充率。

于 2013-03-25T21:39:09.477 回答