Hi
im working with directx 9 and i was wondering
how do i start detecting memory leaks if there are any?
thnx
Printable View
Hi
im working with directx 9 and i was wondering
how do i start detecting memory leaks if there are any?
thnx
you want to look for memory leaks inside dx9?
basically how do i detect mainly in c++
thnx
If you are using Visual Studio, it will tell you automagicaly where the leaks are.
Are you sure? I had the impression that that feature is only provided by Visual Studio Team System, not by all editions of Visual Studio.Quote:
Originally Posted by Skizmo
i'm working with vc++ 2010 beta 2 and its quite good i wonder when the final is gonna be released :)
If you don't learn about debugger then it is hard to find leaks in your program source code although the general good coding habit will be of help. MFC also provides serveral functions to detect leaks but these gain boils down to the coding and programming techniques along with logical reasoning and problem skills you need to obtain via real coding of particular problems you run into.
It's there in all versions but without using MFC you have to some work yourself. See MSDN on for instance the subjects 'CRT Debugging Techniques' and 'Memory Leak Detection Enabling'
Ok i'l check thnx :)