Ignore:
Timestamp:
10/10/08 13:53:22 (16 years ago)
Author:
mattausch
Message:

removed leaks. added class for shaders

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/AxisAlignedBox3.cpp

    r2951 r3021  
    77#include <cassert> 
    88#include <iostream> 
     9 
     10#ifdef _CRT_SET 
     11        #define _CRTDBG_MAP_ALLOC 
     12        #include <stdlib.h> 
     13        #include <crtdbg.h> 
     14 
     15        // redefine new operator 
     16        #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__) 
     17        #define new DEBUG_NEW 
     18#endif 
     19 
    920 
    1021using namespace std; 
Note: See TracChangeset for help on using the changeset viewer.