Reputation: 338
Lets say I have a stack of bitmap textures
char *Texture[] =
{
"texture1.bmp",
"texture2.bmp",
"texture3.bmp",
"texture4.bmp",
}
and I want to use all the pictures using some function in which they will be processed and displayed by some trigger, each one at a time. Do you know if there is any openGL function for implementing this scenario?
Upvotes: 2
Views: 530