Dzek Trek
Dzek Trek

Reputation: 338

Image slide using OpenGL

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

Answers (1)

genpfault
genpfault

Reputation: 52082

OpenGL is not a scene graph. It's just a fancy triangle rasterization system. See here.

Image loading, animation, and triggers are all (much) higher-level pieces of functionality not provided by OpenGL.

Upvotes: 6

Related Questions