Posssible memory leak in OpenGL Intel Win7 drivers

Started by
35 comments, last by mshafey 12 years, 2 months ago
why did you think that? I just wanted to show you a case where an uninitialized pointer actually is initialized. That was all.
I didn't imply that I use only global variables...

Previously you said, I'm quoting: "and pointer declaration depends on the compiler (but you are right it should be undefined)". But Now you say they are initialized...

How can "uninitialized pointer" be actually "initialized". There is no such thing as global unitialized variable from users point of view. C standard requires all global variables to be initialized to 0 or by calling C++ constructor.
Advertisement

[quote name='mshafey' timestamp='1329247414' post='4913082']
Thanks for the suggestion. I've tried your code, it works, but it doesn't fix the leak. I'm still seeing memory leaking at the same rate on the affected platforms.

That's interesting. Let's try to pin down which call is causing it. What happens if you comment out the glTexSubImage2D call? And if you comment out the glMapBuffer block (but leave glTexSubImage2D in and coming from the PBO)?
[/quote]

gDEBugger with the code I posted in the first post. Upon application exit it says "Checking for memory leaks - Context 1 deleted. Memory Leak: 2 object(s) are leaked in GL Context 1 [Leak Size: 2,400KB]". Here are Process Explorer graphs for the original code running for a few minutes.

GPU graph: http://i.imgur.com/KgXix.png
Performance graph: http://i.imgur.com/bD9RH.png

I took out glMapBuffer()/glUnmapBuffer() block. Leak persists. Same for the glTexSubImage2D() call. Took them both out and still. Which lead me to remove everything except just basic calls to draw a rectangle switching colors. I'm sorry I sent everyone in the wrong direction here. It seems like even the most basic GL code causes Windows 7 machines to leak memory. I trimmed it down to this and it still leaks.



void paintGL();
void timerCallback(int value);
void changeSize(int w, int h);

unsigned char c = 255;

int main(int argc, char **argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA);
glutInitWindowPosition(300, 300);
glutInitWindowSize(640, 480);
int windowHandle = glutCreateWindow("Window");
glutDisplayFunc(paintGL);
glutReshapeFunc(changeSize);
timerCallback(0);
glutMainLoop();
glutDestroyWindow(windowHandle);
return 0;
}

void paintGL()
{
c = c? 0 : 255;
glColor3ub(c, c, c);
glBegin(GL_QUADS);
{
glVertex3f(-1, 1, 0);
glVertex3f(1, 1, 0);
glVertex3f(1, -1, 0);
glVertex3f(-1, -1, 0);
}
glEnd();

glutSwapBuffers();
}

void changeSize(int w, int h)
{
glViewport(0, 0, w, h);
}

void timerCallback(int value)
{
glutPostRedisplay();
glutTimerFunc(5, timerCallback, 0);
}



I might add that in some runs, this code starts off at about 18 MB and goes up to and then stabilizes at 40 MB in a 5-6 minutes.
Hi.

Could it be an issue with GLUT ?

This part :
void timerCallback(int value)
{
glutPostRedisplay();
glutTimerFunc(5, timerCallback, 0);
}



Shouldn't be :

int main(int argc, char **argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA);
glutInitWindowPosition(300, 300);
glutInitWindowSize(640, 480);
int windowHandle = glutCreateWindow("Window");
glutDisplayFunc(paintGL);
glutReshapeFunc(changeSize);
glutTimerFunc(5, timerCallback, 0);
glutMainLoop();
glutDestroyWindow(windowHandle);
return 0;
}

void timerCallback(int value)
{
glutPostRedisplay();
}



?
No. I'm finding the same behavior with QGLWidget (not using GLUT). Also, VLC with OpenGL output seems to have this memory increase problem as well.

[quote name='mhagain' timestamp='1329248389' post='4913090']
[quote name='mshafey' timestamp='1329247414' post='4913082']
Thanks for the suggestion. I've tried your code, it works, but it doesn't fix the leak. I'm still seeing memory leaking at the same rate on the affected platforms.

That's interesting. Let's try to pin down which call is causing it. What happens if you comment out the glTexSubImage2D call? And if you comment out the glMapBuffer block (but leave glTexSubImage2D in and coming from the PBO)?
[/quote]

gDEBugger with the code I posted in the first post. Upon application exit it says "Checking for memory leaks - Context 1 deleted. Memory Leak: 2 object(s) are leaked in GL Context 1 [Leak Size: 2,400KB]". Here are Process Explorer graphs for the original code running for a few minutes.

GPU graph: http://i.imgur.com/KgXix.png
Performance graph: http://i.imgur.com/bD9RH.png

I took out glMapBuffer()/glUnmapBuffer() block. Leak persists. Same for the glTexSubImage2D() call. Took them both out and still. Which lead me to remove everything except just basic calls to draw a rectangle switching colors. I'm sorry I sent everyone in the wrong direction here. It seems like even the most basic GL code causes Windows 7 machines to leak memory. I trimmed it down to this and it still leaks.



void paintGL();
void timerCallback(int value);
void changeSize(int w, int h);

unsigned char c = 255;

int main(int argc, char **argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA);
glutInitWindowPosition(300, 300);
glutInitWindowSize(640, 480);
int windowHandle = glutCreateWindow("Window");
glutDisplayFunc(paintGL);
glutReshapeFunc(changeSize);
timerCallback(0);
glutMainLoop();
glutDestroyWindow(windowHandle);
return 0;
}

void paintGL()
{
c = c? 0 : 255;
glColor3ub(c, c, c);
glBegin(GL_QUADS);
{
glVertex3f(-1, 1, 0);
glVertex3f(1, 1, 0);
glVertex3f(1, -1, 0);
glVertex3f(-1, -1, 0);
}
glEnd();

glutSwapBuffers();
}

void changeSize(int w, int h)
{
glViewport(0, 0, w, h);
}

void timerCallback(int value)
{
glutPostRedisplay();
glutTimerFunc(5, timerCallback, 0);
}



I might add that in some runs, this code starts off at about 18 MB and goes up to and then stabilizes at 40 MB in a 5-6 minutes.
[/quote]

This is crazy... I can't believe Intel drivers are this bad on windows... Well I ran into similar problems on windows when I worked for a company for the last summer, and eventually I had to switch to DirectX because the OGL functions just didn't work as expected (or caused crashes etc.)
On reconsidering this, memory usage starting low, followed by an increase then stabilize is probably nothing to be worried about. It's where the stabilize part doesn't happen that you need to start worrying (that's a real leak - stabilization isn't a leak, it's just using resources). What's actually happening would be internal driver behaviour so we're reduced to guessing here, but going by your final stripped down program a reasonable and plausable guess would be that the driver is buffering up geometry used by immediate mode calls - it may for example be writing them into a dynamic VBO and then issuing real draw calls behind the scenes from that.

As for the two leaked objects - I have a suspicion which a simple test will help confirm. If you totally strip down the program so that each frame is nothing more than a clear and swapbuffers, and if they still leak, then I'm going to suggest that they might be your backbuffer and depth buffer (these do exist as actual GPU objects although OpenGL doesn't really expose them as such) - 640 * 480 * 4 * 2 is very close to the reported leak size of 2.4 mb (if my other guess is correct then the increase/stabilize usage pattern should also go away with this strip down). Of course, if gDEBugger allows you to drill further into this and identify which objects were leaked then it would be additional useful info.

Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls.


On reconsidering this, memory usage starting low, followed by an increase then stabilize is probably nothing to be worried about. It's where the stabilize part doesn't happen that you need to start worrying (that's a real leak - stabilization isn't a leak, it's just using resources). What's actually happening would be internal driver behaviour so we're reduced to guessing here, but going by your final stripped down program a reasonable and plausable guess would be that the driver is buffering up geometry used by immediate mode calls - it may for example be writing them into a dynamic VBO and then issuing real draw calls behind the scenes from that.


Thanks. We realized this is true. From here:


Memory Usage

[color=#000000][font=sans-serif]

It seems to be common to think that there is a memory leak in the OpenGL driver. Some users write simple programs such as this[/font]


[color=#000000][font=sans-serif]

glClear[color=#008000](...[color=#008000])[color=#008080];
SwapBuffers[color=#008000](...[color=#008000])[color=#008080];[/font]
[color=#000000][font=sans-serif]

and they observe that their memory usage goes up each time their Display function is called. That is normal. The driver might allocate some memory space and since the driver is basically a black box, we don't know what it is doing. The driver might be doing some work at optimizing in a secondary thread or preparing some buffering area. We don't know what it is doing, but there is no memory leak.[/font][/quote]

The problem is, in our application we're dealing with many OpenGL contexts at once (up to 30). For Windows XP on the same hardware, OpenGL memory is small compared to Windows 7. So in a day my application memory goes up to 1.5 GB on Win 7, but stays at 500 MB on XP.

We'll either require more memory or reduce the number of contexts used.

Thanks for the useful input everyone.

This topic is closed to new replies.

Advertisement