mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
disable dbgheap by default
This commit is contained in:
parent
a38e063667
commit
c598485e8e
@ -21,11 +21,26 @@
|
||||
|
||||
#include <dconfig.h>
|
||||
|
||||
#if defined(WIN32_VC) && defined(_DEBUG)
|
||||
// _DEBUG assumes you are linking to msvcrt70d.dll, not msvcrt70.dll
|
||||
#define USE_WIN32_DBGHEAP
|
||||
#include <crtdbg.h>
|
||||
#endif
|
||||
|
||||
Configure(config_interrogatedb);
|
||||
NotifyCategoryDef(interrogatedb, "");
|
||||
|
||||
ConfigureFn(config_interrogatedb) {
|
||||
// interrogate_request_library("types");
|
||||
|
||||
#ifdef USE_WIN32_DBGHEAP
|
||||
if(!config_interrogatedb.GetBool("use-win32-dbgheap", false)) {
|
||||
// deflt disable complete heap verify every 1024 allocations (VC7 deflt).
|
||||
// With vc7 stl small-string-optimization causing more allocs,
|
||||
// this can cause order-of-magnitude slowdowns in dbg builds
|
||||
::_CrtSetDbgFlag(0x0);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
const DSearchPath &
|
||||
|
Loading…
x
Reference in New Issue
Block a user