memory leak.

Started by
2 comments, last by JTAnderson 17 years, 10 months ago
Hi, my opengl program has a memory leak, is anybody using a library for looking for it? Some calls to allocating-freeing. I do not know how these work exactly. In fact i am sure i have system memory leak, but it is possible that videomemory also out of control.
credo
Advertisement
http://www.codeproject.com/tools/visualleakdetector.asp

just include it and link it. Run in debug and the output window will give you all the leaks in the VC++ code. Won't help for Graphics allocations though.
Quote:Original post by _dogo
Hi, my opengl program has a memory leak, is anybody using a library for looking for it? Some calls to allocating-freeing. I do not know how these work exactly.

In fact i am sure i have system memory leak, but it is possible that videomemory also out of control.


You're absolutely sure that it's not your own fault?
Because mostly it's not the system's fault, it's the programmer's.
Killers don't end up in jailThey end up on a high-score!
Check these out:

http://www.codeguru.com/forum/showthread.php?t=312742

and for opengl problems:

http://glintercept.nutty.org/

-JT

This topic is closed to new replies.

Advertisement