I am trying to create a tool that will draw a shape in openGL and then modify the values of the properties of that shape in a windows form. So if my shape is a rectangle, I will create a form that will allow the user to control the size, color etc of the rectangle. I have written the openGL code in managed c++ and the form in c#, and as some of these shapes got more complicated I decided to make display lists for them (for both performance and predictability purposes).

I define the display list in the constructor for the shape and I call the display lists in the render method.

My issue is that my display lists won't run at all. The parts that I render outside of a display list will be rendered, but the parts inside the display list will not be rendered.

Here's some sample code of my process:

//c# side
GLRectangle rect
public CSharpRectangle() {
    rect = new GLRectangle();
}

//managed c++ side
public GLRectangle() {
   width = 50;
   height = 50;
   //initialize more values
   rectDL = glGenLists(1);
   glNewList(rectDL, GL_COMPILE);
        renderRect();
   glEndList();
}
public render() {
     //Draw border
glBegin(GL_LINE_LOOP);
    glVertex2f(0, 0);
    glVertex2f(width, 0);
    glVertex2f(width, height);
    glVertex2f(0, height);
glEnd();

     //Draw interior
     glCallList(rectDL);
}
private renderRect() {
     glRectf(0,0,width,height);
}

In this example, the border of the rectangle would be rendered, but the rectangle itself won't be rendered... if I replace the display list with simply a method call, the rectangle is rendered fine. Does anyone know why this might be happening?

link|improve this question
2  
Can you please post your renderRect function as well? It might be helpful. – Dany Jul 29 '11 at 23:00
Added the renderRect method. – eternalking Jul 31 '11 at 15:41
feedback

2 Answers

up vote 1 down vote accepted

I want to give my 2 cents.

The code in your question seems correct to me, so probably there something else in your application that make your display list not runnable.

The only thing I can think is there's no current context when compiling the display list (indeed when executing GlRectangle constructor). So, is that routine executed in the same thread which have called glMakeCurrent? Is that routine called after glMakeCurrent?

Further, check with glGetError after each OpenGL routine in order to validate the operation. In the case it returns an error, you can know what's wrong in your code..

link|improve this answer
That was the problem, I was creating the context after I instantiated the shape. My actual program is significantly more complex than the example I gave, so I didn't notice it at first. Thanks for your help! – eternalking Aug 3 '11 at 19:30
feedback

The reason you may not get what you want is simply because it isn't there anymore. In time I was reading openGL Red book, I've noticed that display lists were deprecated in openGL 3.1 and higher (means simply removed) and googling for that confirmed it. I don't remember reason anymore, but I believe because it was messing with VAOs and VBOs. So if you are using higher than opengl 3.1 you won't get display lists anymore.

link|improve this answer
-1, display lists are deprecated but are still supported everywhere for compatibility. Deprecated means that they are there but it is advised not to use them – Hannesh Jul 31 '11 at 9:06
Read more carefully, deprecated means they are flaged for removing and is advised to not using them. Whoever(ATI, Nvidia,...) decides to remove them, they are free to do and ATI had poor performance with them. Unless you don't want to use old openGL versions, you shouldn't build a new project on deprecated things anyway. If they would keep compatibility for everything that was deprecated, what would be idea of deprecating? – Raven Jul 31 '11 at 9:37
1  
@Raven deprecation is related with the current OpenGL version you use as renderer. Deprecation were introduced starting from 3.0, so a lower version shall support deprecated APIs. You can't use deprecated functionalities in a forward-compatible context, except by using compatibility profile. – Luca Aug 1 '11 at 7:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.