[3295] | 1 | #####################################################
|
---|
| 2 | # environment file for the friendlyculling demo #
|
---|
| 3 | #####################################################
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | ################
|
---|
| 7 | # misc stuff
|
---|
| 8 |
|
---|
| 9 | filename=city
|
---|
| 10 | bvhname=city
|
---|
| 11 |
|
---|
| 12 | useLODs=1
|
---|
| 13 |
|
---|
| 14 | # shadow map size
|
---|
| 15 | shadowSize=4096
|
---|
| 16 |
|
---|
| 17 | # the filenames given to recorded frames (+ number.bmp)
|
---|
| 18 | recordedFramesSuffix=frames/vienna_frame
|
---|
| 19 |
|
---|
| 20 | # the filename for the statistics
|
---|
| 21 | statsFilename=mystats
|
---|
[3362] | 22 | walkThroughSuffix=walkthrough_vienna2
|
---|
[3295] | 23 |
|
---|
| 24 | # use potentially visible sets?
|
---|
| 25 | usePvs=0
|
---|
| 26 |
|
---|
| 27 | # if using pvs, this specifies the name of the visibility solution
|
---|
| 28 | visibilitySolution=myvienna-3x1-obvh-pgv
|
---|
| 29 |
|
---|
| 30 | viewCellsScaleFactor=1.0f
|
---|
| 31 | useSkylightForIllum=1
|
---|
| 32 |
|
---|
| 33 | skyDomeScaleFactor=80.0f
|
---|
| 34 |
|
---|
| 35 | visibilitySolutionInitialState=500000000
|
---|
| 36 | # renderMode: Frustum Culling, Stop And Wait, CHC, CHC ++
|
---|
| 37 | renderMode=3
|
---|
| 38 |
|
---|
| 39 | ############
|
---|
| 40 | ## chc++ options
|
---|
| 41 |
|
---|
| 42 | assumedVisibleFrames=10
|
---|
| 43 | maxBatchSize=50
|
---|
| 44 | # triangles per bvh leaf (influences hierarchy depth vs. occlusion power)
|
---|
| 45 | #trianglesPerVirtualLeaf=300
|
---|
| 46 | trianglesPerVirtualLeaf=0
|
---|
| 47 | # max depth for searching for nodes for tight bounds
|
---|
| 48 | maxDepthForTestingChildren=3
|
---|
| 49 |
|
---|
| 50 |
|
---|
| 51 | ####################
|
---|
| 52 | ## camera / light options
|
---|
| 53 |
|
---|
| 54 | # move speed
|
---|
| 55 | keyRotation=0.5f
|
---|
| 56 | keyForwardMotion=20.0f
|
---|
| 57 | keyForwardMotion=30.0f
|
---|
| 58 |
|
---|
| 59 | # initial camera position
|
---|
| 60 | camPosition=483.398f 242.364f 186.078f
|
---|
| 61 | # initial camera orientation
|
---|
| 62 | camDirection=1 0 0
|
---|
| 63 |
|
---|
| 64 | #lightDirection=0.509293 0.784034 -0.35484
|
---|
| 65 | #lightDirection=0.360937 0.0267167 -0.932207
|
---|
| 66 | lightDirection=0.556361 0.559966 -0.613923
|
---|
| 67 |
|
---|
[3353] | 68 |
|
---|
[3295] | 69 | #####################
|
---|
| 70 | ## window options
|
---|
| 71 |
|
---|
| 72 | #winWidth=800
|
---|
| 73 | #winHeight=600
|
---|
| 74 |
|
---|
| 75 | winWidth=1024
|
---|
| 76 | winHeight=768
|
---|
| 77 |
|
---|
| 78 | useFullScreen=0
|
---|
| 79 |
|
---|
| 80 | # the used render method (forward, forward + depth pass, deferred, deferred + depth pass
|
---|
[3299] | 81 | renderMethod=2
|
---|
| 82 | #renderMethod=0
|
---|
[3295] | 83 |
|
---|
| 84 | #modelPath=data/city/model/
|
---|
| 85 |
|
---|
| 86 |
|
---|
| 87 | ############
|
---|
| 88 | ## shader options for deferred rendering
|
---|
| 89 |
|
---|
| 90 | # tone mapping
|
---|
| 91 | useHDR=0
|
---|
| 92 | # use antialiasing
|
---|
| 93 | useAA=0
|
---|
| 94 | # show lense flare
|
---|
| 95 | useLenseFlare=1
|
---|
| 96 | # use ssao / color bleeding
|
---|
| 97 | useAdvancedShading=1
|
---|
| 98 | # skylight turbitity
|
---|
| 99 | turbitity=3.0f
|
---|
| 100 | #turbitity=2.0f
|
---|
| 101 | #sky dome scale factor
|
---|
| 102 |
|
---|
| 103 |
|
---|
| 104 | ###############
|
---|
| 105 | ## ssao options
|
---|
| 106 |
|
---|
| 107 | # use full resolution ssao (vs. half resoltion)
|
---|
| 108 | ssaoUseFullResolution=1
|
---|
| 109 | # ssao kernel radius
|
---|
| 110 | #ssaoKernelRadius=8e-1f
|
---|
| 111 | ssaoKernelRadius=4e-1f
|
---|
| 112 | # ssao sample intensity
|
---|
[3342] | 113 | ssaoSampleIntensity=0.2f
|
---|
| 114 | #ssaoSampleIntensity=0.8f
|
---|
[3295] | 115 | # ssao temporal coherence factor
|
---|
| 116 | tempCohFactor=2000.0f
|
---|
| 117 | # ssao filter radius
|
---|
[3306] | 118 | ssaoFilterRadius=3.0f
|
---|