Ignore:
Timestamp:
02/06/06 23:53:19 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellsManager.cpp

    r600 r601  
    189189 
    190190                // TODO: leak? 
    191                 ComputeSampleContributions(constructionSamples, true, false); 
     191                if(0)ComputeSampleContributions(constructionSamples, true, false); 
    192192                cout << "finished" << endl; 
    193193 
     
    211211        // store viewCells for postprocessing 
    212212        const bool storeViewCells = true; 
    213         ComputeSampleContributions(postProcessSamples, true, storeViewCells); 
     213        if(0)ComputeSampleContributions(postProcessSamples, true, storeViewCells); 
    214214        // merge the view cells 
    215215        PostProcess(preprocessor->mObjects, postProcessSamples); 
     
    224224                                        visualizationSamples); 
    225225 
    226         ComputeSampleContributions(visualizationSamples, true, storeViewCells); 
     226        if(0)ComputeSampleContributions(visualizationSamples, true, storeViewCells); 
    227227 
    228228        //Debug << "visualizationsamples: " << mVisualizationSamples << " " << visualizationSamples.size() << endl; 
     
    25162516        cout << "Computing remaining ray contributions ... "; 
    25172517        // recast rest of rays 
     2518        if (0) 
    25182519        ComputeSampleContributions(savedRays, true, false); 
    25192520        cout << "finished" << endl; 
     
    26962697 
    26972698        VssRayContainer postProcessRays; 
    2698         GetRaySets(rays, mPostProcessSamples, postProcessRays); 
     2699        if(0)GetRaySets(rays, mPostProcessSamples, postProcessRays); 
    26992700 
    27002701        Debug << "post processing using " << (int)postProcessRays.size() << " samples" << endl; 
Note: See TracChangeset for help on using the changeset viewer.