OpenGl slower and slower!

Started by
13 comments, last by wugamp 11 years, 8 months ago
I'm developing a 3D software with VC6 and OpenGL to simulate a rotating-eye, i.e. when I move the mouse I can see a machine from differnent view angle. However, if I keep rotating, It often gets slower and slower after running for about 10 mins. Sometimes it also gets dead.
I have worked for days but I can't solve it.
Now I think maybe the reason lies in video card driver.
Here is information of my environment:
GL_VENDOR: NVIDIA Corp.
GL_RENDERER: GeForce GT 430/PCIe/SSSE2/3DNOW!
GL_VERSION: 4.2.0
GLU_VERSION: 1.2.2.0 Microsoft Corp.
Do you think the environment is OK? Shall I re-intall the video card driver or change the option?
Or if you can give me some other suggestion?
Thanks a lot!
Advertisement
I would doubt that a driver would be so bad that it would have that effect. If so it would affect most other graphical applications as well.

Look out for memory leaks. You may be re-creating resources instead of re-using them, or failing to dispose of resources that you're legitimately finished with. I don't know your level of experience, but are you perhaps creating your mesh or textures multiple times?

PS - I'm not an expert on this but you may want to try something like gDEBugger to get statistics and info on leaks or obsolete APIs used.

I'm developing a 3D software with VC6

VC6? Really? I feel so bad for you... unless you are bringing this on yourself. You should seriously upgrade if you can. And if you can't, you should still upgrade. To anything.


However, if I keep rotating, It often gets slower and slower after running for about 10 mins. Sometimes it also gets dead.
I have worked for days but I can't solve it.

What have you tried? Could be a memory leak (those can have weird effects like this), or a number of things. It's likely a) a bug in your code, or b) a poor algorithmic choice.


Now I think maybe the reason lies in video card driver.
Here is information of my environment:
GL_VENDOR: NVIDIA Corp.
GL_RENDERER: GeForce GT 430/PCIe/SSSE2/3DNOW!
GL_VERSION: 4.2.0
GLU_VERSION: 1.2.2.0 Microsoft Corp.
Do you think the environment is OK? Shall I re-intall the video card driver or change the option?
Or if you can give me some other suggestion?

No clue... You'd be better off asking NVIDIA that. I'd be surprised if it's the driver, because you'd likely notice the issue in other programs too.
[size=2][ I was ninja'd 71 times before I stopped counting a long time ago ] [ f.k.a. MikeTacular ] [ My Blog ] [ SWFer: Gaplessly looped MP3s in your Flash games ]
I would also lean toward a memory leak of some sort, or the re-creation of resources.

However, it could just be that the video card is slowing the frame rate down to 60 fps. Some video cards will do this as a way to save power. If that's the case you can verify it by monitoring the frame rate. It will have very distinct drops in frame rates and wont drop below 60 fps.
Mmh yeah what do you mean by slower and slower? Frame rate is going down (numbers) ?

As others said I doubt the problem is in driver/hardware.

How is the CPU/memory usage of your process evolving?
Thank you ALL! It's very possible that you are right. I checked the RAM with task-manager. The software snatches more and more RAM. At the beginning it occupies about 12M, then gradually increases to 18M.
Let me take Jeffery's tool to have a try.
Increase to 18mb sounds normal enough, and an extra 6mb is a quite literally tiny amount of RAM for a program to be using - extremely unlikely to be causing any issues.

What are you using for timing in your code? Are you using a high-precision timer? Are you accumulating delta times (possibly as floats) each frame or are you using an absolute time-since-program-start?

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

It could also be a memory leak of the GPU memory. For NVIDIA, try:
[source lang="cpp"]GLint par = -1;
glGetIntegerv(GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX, &par);
printf("GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX %d\n", par);
[/source]
[size=2]Current project: Ephenation.
[size=2]Sharing OpenGL experiences: http://ephenationopengl.blogspot.com/
I still cannot use gDEBugger now. Now I'm working with a very stupid method: I remmed some sentences and observed task manager.
I found even glClear() can make memory-leak.
See the code:
void CModelDisplayDlg::RenderScene()
{
static float fShadMatrix[16];
float fShadowPlane[] = {0, 1, 0, 0};
float fLightDirect[] = {0, -1, 0, 0 };
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
SwapBuffers(m_hRenderDC);
}

Call RenderScene() again and again, and it will occupies more and more memory. But if I remmed glClear, it won't.

Maybe I don't use glClear properly?


to Mhagain: I timed with my mobile phone. In fact, I'm not interested in timing now. Task-manager helps more.

to Larspensjo: I have two computers with different video car. One is NVIDIA but the other is Interl(R) HD Graphics Family (maybe ATI).
Now I can only use the computer with Intel HD. GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX doesn't work on it. Would you tell me some other name? Thanks for telling me the very useful method.

Would you tell me some other name?

On AMD, you can do:
[font=arial,helvetica,sans-serif][source lang="cpp"]
[/font][font=arial,helvetica,sans-serif]GLint parATI[4];
glGetIntegerv(VBO_FREE_MEMORY_ATI, parATI);
if (glGetError() == GL_NO_ERROR)
printf("VBO_FREE_MEMORY_ATI total %d, largest block %d, total aux %d, largest aux block %d\n", parATI[0], parATI[1], parATI[2], parATI[3]);
[/font][font=arial,helvetica,sans-serif][/source]
[/font][font=arial, helvetica, sans-serif]Notice the test with [/font][font=arial, helvetica, sans-serif]glGetError(), which can be used to make sure you got a result. I do that for the NVIDIA test also.[/font]
[size=2]Current project: Ephenation.
[size=2]Sharing OpenGL experiences: http://ephenationopengl.blogspot.com/

This topic is closed to new replies.

Advertisement