Ignore:
Timestamp:
05/02/06 11:14:52 (18 years ago)
Author:
bittner
Message:

RenderSampler?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r870 r871  
    18561856 
    18571857 
    1858 bool ViewCellsManager::ExportViewCells(const string filename) 
     1858bool ViewCellsManager::ExportViewCells(const string filename, const bool exportPvs) 
    18591859{ 
    18601860        return false; 
     
    22722272                char filename[100]; 
    22732273                environment->GetStringValue("ViewCells.filename", filename); 
    2274                 ExportViewCells(filename); 
     2274                ExportViewCells(filename, mExportPvs); 
    22752275        } 
    22762276         
     
    27192719 
    27202720 
    2721 bool BspViewCellsManager::ExportViewCells(const string filename) 
     2721bool BspViewCellsManager::ExportViewCells(const string filename, const bool exportPvs) 
    27222722{ 
    27232723        cout << "exporting view cells to xml ... "; 
     
    27452745        stream << "<ViewCells>" << endl; 
    27462746 
    2747         mViewCellsTree->Export(stream, mExportPvs); 
     2747        mViewCellsTree->Export(stream, exportPvs); 
    27482748 
    27492749        stream << "</ViewCells>" << endl; 
     
    39643964                char filename[100]; 
    39653965                environment->GetStringValue("ViewCells.filename", filename); 
    3966                 ExportViewCells(filename); 
     3966                ExportViewCells(filename, mExportPvs); 
    39673967        } 
    39683968 
     
    47104710 
    47114711 
    4712 bool VspBspViewCellsManager::ExportViewCells(const string filename) 
     4712bool VspBspViewCellsManager::ExportViewCells(const string filename, const bool exportPvs) 
    47134713{ 
    47144714        cout << "exporting view cells to xml ... "; 
     
    47354735        stream << "<ViewCells>" << endl; 
    47364736         
    4737         mViewCellsTree->Export(stream, mExportPvs); 
     4737        mViewCellsTree->Export(stream, exportPvs); 
    47384738 
    47394739        stream << "</ViewCells>" << endl; 
Note: See TracChangeset for help on using the changeset viewer.