Ignore:
Timestamp:
05/29/08 00:31:59 (16 years ago)
Author:
mattausch
Message:

siggraph asia submission

File:
1 edited

Legend:

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

    r2721 r2725  
    104104                mViewDirection = Vector3(-0.604798, 0, 0.796379); 
    105105 
    106                 if (0) { 
     106                if (1) { 
    107107 
    108108                // outside 
     
    15731573        int i = 0; 
    15741574 
     1575        // $ tmp matt: somehow this is not properly initialised 
     1576        ClearErrorBuffer(); 
     1577        cout << "here4 " << mPvsErrorBuffer.size() << endl; 
    15751578        for (sit = viewPoints.begin(); sit != sit_end; ++ sit, ++ i)  
    15761579        { 
     
    15841587                mViewDirection = sray.mDirection; 
    15851588 
     1589                cout << "handling vp " << mFrame << " " << mViewPoint << " " << mViewDirection << endl; 
    15861590                // skip all frames which have already 0 pixel error 
    15871591                // $$ Reverted back by JB for efficiency 
    1588                 if (mPvsErrorBuffer[i].mError > 0.0f)  
    1589                 { 
     1592                if (1)//mPvsErrorBuffer[i].mError > 0.0f)  
     1593                { 
     1594                        cout << "here3" << endl; 
    15901595                        // compute the pixel error 
    15911596                        mPvsErrorBuffer[i].mError = GetPixelError(pvsSize, mPvsStat.pass); 
    15921597                        mPvsErrorBuffer[i].mPvsSize = pvsSize; 
    15931598 
    1594                         if (0 && (mPvsErrorBuffer[i].mError * GetWidth() * GetHeight() > 0) && (pvsSize > 0))  
     1599                        if ((mPvsErrorBuffer[i].mError * GetWidth() * GetHeight() > 0) && (pvsSize > 0))  
    15951600                        { 
    15961601                                cout << "error in frame " << i << "," << mViewPoint << "," << mViewDirection << " "  
Note: See TracChangeset for help on using the changeset viewer.