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/BvhLoader.cpp

    r2964 r3021  
    66#include "BvhLoader.h" 
    77#include "gzstream.h" 
     8 
     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 
    819 
    920 
     
    6576        BvhNode *root = LoadNextNode(stream, NULL); 
    6677 
    67 #if 0 
     78#if 1 
    6879 
    6980        bvh->mRoot = root; 
Note: See TracChangeset for help on using the changeset viewer.