-
Display lists and textues... Something I should know?
Hi!
Is it possible to bind a texture inside a display list... My code works if I bind it just before calling the display list, but not in the display list...
Cheers...
-
Junior Member
Regular Contributor
Re: Display lists and textues... Something I should know?
Yes this should work
Here is some sample code..
myDisplayListList = glGenLists(1); // start generation of the list
glNewList(myDisplayList, GL_COMPILE);
glBindTexture(GL_TEXTURE_2D, tList[myTextureObject]);
glBegin (GL_TRIANGLES);
...
...
...
glEnd ();
glDisable(GL_TEXTURE_2D);
glEndList();
-
Senior Member
OpenGL Guru
Re: Display lists and textues... Something I should know?
Hello
Can the problem be that you bind new textures INSIDE glBegin() and glEnd()? Not sure you can do that. To change texture, this might work.
glNewList()
glBindTexture() bind texture one
glBegin() draw first part
.
.
.
glEnd()
glBindTexture() bind texture two
glBegin() draw second part
.
.
.
glEnd()
glEndList()
Bob
-
Advanced Member
Frequent Contributor
Re: Display lists and textues... Something I should know?
You can actually do it like they said, but from experience puting glBindtexture in the display list gave me a big performance hit.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules