Changeset 3289 for GTP


Ignore:
Timestamp:
01/20/09 23:34:39 (15 years ago)
Author:
mattausch
Message:

siggraph submission deadline

Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/default.env

    r3288 r3289  
    2727statsFilename=mystats 
    2828#walkThroughSuffix=walkthrough_pp_1 
    29 walkThroughSuffix=walkthrough_vienna 
    30 #walkThroughSuffix=path_pp 
     29#walkThroughSuffix=walkthrough_vienna 
    3130 
    3231# use potentially visible sets? 
     
    153152 
    154153# static geometry 
    155 #filename=PowerPlantM 
    156 #bvhname=PowerPlantM 
    157 #keyForwardMotion=500.0f 
    158 #mouseMotion=10.0f 
    159 #visibilitySolution=power-plant-2c-xx-1000b-pgv2 
     154filename=PowerPlantM 
     155bvhname=PowerPlantM 
     156keyForwardMotion=500.0f 
     157mouseMotion=10.0f 
     158visibilitySolution=power-plant-2c-xx-1000b-pgv2 
    160159#visibilitySolution=power-plant-2c-xx-1000d-pgv 
    161 #visibilitySolution=power-plant-2c-xx-1000b-spgvu 
    162 #camPosition=-1320.57 -6306.34 3603 
    163 #camDirection=0.292156 0.9556 0.0383878 
    164 #viewCellsScaleFactor=0.05f 
     160visibilitySolution=power-plant-2c-xx-1000b-spgvu 
     161camPosition=-1320.57 -6306.34 3603 
     162camDirection=0.292156 0.9556 0.0383878 
     163viewCellsScaleFactor=0.05f 
    165164 
    166 #camPosition=763.554 -10254.5 2604 
    167 #camDirection=-0.0975121 0.994494 0.0383878 
    168 #useSkylightForIllum=1 
    169 #skyDomeScaleFactor=1000.0f 
     165camPosition=763.554 -10254.5 2604 
     166camDirection=-0.0975121 0.994494 0.0383878 
     167useSkylightForIllum=1 
     168skyDomeScaleFactor=1000.0f 
    170169 
     170camPosition=1145.31 413.602 186.678 
     171camDirection=-0.917729 -0.397207 -0 
     172#lightDirection=0.509293 0.784034 -0.35484 
     173lightDirection=0.360937 0.0267167 -0.932207 
    171174 
    172 #camPosition=1145.31 413.602 186.678 
    173 #camDirection=-0.917729 -0.397207 -0 
    174 #lightDirection=0.509293 0.784034 -0.35484 
     175#walkThroughSuffix=path_pp 
     176walkThroughSuffix=walkthrough_pp_1 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/VisibilitySolutionLoader.cpp

    r3286 r3289  
    3636        fread(&totalTime, sizeof(float), 1, fr); 
    3737 
     38        cout << "visibity solution created with " << totalSamples << " in " << totalTime << " secs" << endl; 
    3839        cout << "loading view cells" << endl; 
    3940 
     
    155156 
    156157        BvhNodeContainer nodes; 
    157         CreateIdSortedList2(bvh->GetStaticRoot(), nodes); 
    158         //CreateIdSortedList(bvh, nodes); 
     158        //CreateIdSortedList2(bvh->GetStaticRoot(), nodes); 
     159        CreateIdSortedList(bvh, nodes); 
    159160 
    160161        const int tenpercent = number / 10; 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/chcdemo.cpp

    r3288 r3289  
    17851785                        (renderMethod == RENDER_DEPTH_PASS_DEFERRED) 
    17861786                        ); 
    1787                  
    17881787                break; 
    17891788        case GLUT_KEY_F8: 
     
    17991798                { 
    18001799                        cout << "replaying path" << endl; 
    1801  
    18021800                        currentReplayFrame = -1; 
    18031801 
     
    18091807                        cout << "finished replaying path" << endl; 
    18101808                } 
    1811  
    18121809                break; 
    18131810        case GLUT_KEY_F11: 
     
    18241821                        DEL_PTR(walkThroughRecorder); 
    18251822                } 
    1826  
    18271823                break; 
    18281824        case GLUT_KEY_F12: 
Note: See TracChangeset for help on using the changeset viewer.