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

    r2963 r3021  
    1 #include <queue> 
    2 #include <stack> 
    3 #include <fstream> 
    4 #include <iostream> 
    5 #include <iomanip> 
    6  
    71#include "Bvh.h" 
    82#include "Camera.h" 
     
    159#include "Material.h" 
    1610#include "gzstream.h" 
     11 
     12#include <queue> 
     13#include <stack> 
     14#include <fstream> 
     15#include <iostream> 
     16#include <iomanip> 
     17 
     18 
     19#ifdef _CRT_SET 
     20        #define _CRTDBG_MAP_ALLOC 
     21        #include <stdlib.h> 
     22        #include <crtdbg.h> 
     23 
     24        // redefine new operator 
     25        #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__) 
     26        #define new DEBUG_NEW 
     27#endif 
    1728 
    1829 
Note: See TracChangeset for help on using the changeset viewer.