Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 27, 2005, 2:24:13 PM (18 years ago)
Author:
hdavid
Message:

branches\avi_play: MediaContainer returns a texture not a surface, it's faster. MoviePlayer can display the textures, playspeed not yet implemented

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/avi_play/src/lib/graphics/importer/texture_sequence.cc

    r6163 r6317  
    153153}
    154154
    155 bool TextureSequence::addFrameList(std::vector<SDL_Surface*> surfaces)
     155bool TextureSequence::addFrameList(std::vector<GLuint> textures)
    156156{
    157   // add the surfaces to the list
    158   for(int i = 0; i < surfaces.size(); i++)
    159     this->addFrame(surfaces[i]);
     157  // add the textures to the list
     158  for(int i = 0; i < textures.size(); i++)
     159    this->addFrame(textures[i]);
    160160}
    161161
Note: See TracChangeset for help on using the changeset viewer.