1 | #####################################################
|
---|
2 | # environment file for the friendlyculling demo #
|
---|
3 | #####################################################
|
---|
4 |
|
---|
5 |
|
---|
6 | ################
|
---|
7 | # misc stuff
|
---|
8 |
|
---|
9 | filename=city
|
---|
10 | useLODs=1
|
---|
11 | # shadow map size
|
---|
12 | shadowSize=4096
|
---|
13 | # the filenames given to recorded frames (+ number.bmp)
|
---|
14 | recordedFramesSuffix=image
|
---|
15 | # the filename for the statistics
|
---|
16 | statsFilename=mystats.log
|
---|
17 |
|
---|
18 |
|
---|
19 | ############
|
---|
20 | ## chc++ options
|
---|
21 |
|
---|
22 | assumedVisibleFrames=10
|
---|
23 | maxBatchSize=50
|
---|
24 | # triangles per bvh leaf (influences hierarchy depth vs. occlusion power)
|
---|
25 | trianglesPerVirtualLeaf=300
|
---|
26 | # max depth for searching for nodes for tight bounds
|
---|
27 | maxDepthForTestingChildren=3
|
---|
28 |
|
---|
29 |
|
---|
30 | ####################
|
---|
31 | ## camera / light options
|
---|
32 |
|
---|
33 | # move speed
|
---|
34 | keyForwardMotion=5.0f
|
---|
35 | keyRotation=0.5f
|
---|
36 | #keyForwardMotion=20.0f
|
---|
37 | #keyRotation=1.5f
|
---|
38 |
|
---|
39 | # initial camera position
|
---|
40 | #camPosition=483.398f 242.364f 186.078f
|
---|
41 | # initial camera orientation
|
---|
42 | #camDirection=1 0 0
|
---|
43 |
|
---|
44 | camPosition=468.025 267.591 182.478
|
---|
45 | camDirection=0.937282 0.348573 -0
|
---|
46 |
|
---|
47 | #lightDirection=-0.8f 1.0f -0.7f
|
---|
48 | lightDirection=-0.3f 0.2f -0.7f
|
---|
49 |
|
---|
50 |
|
---|
51 | #####################
|
---|
52 | ## window options
|
---|
53 |
|
---|
54 | #winWidth=800
|
---|
55 | #winHeight=600
|
---|
56 |
|
---|
57 | winWidth=1024
|
---|
58 | winHeight=768
|
---|
59 |
|
---|
60 | useFullScreen=0
|
---|
61 |
|
---|
62 | # the used render method (forward, forward + depth pass, deferred, deferred + depth pass
|
---|
63 | renderMethod=2
|
---|
64 |
|
---|
65 | #modelPath=data/city/model/
|
---|
66 |
|
---|
67 |
|
---|
68 | ############
|
---|
69 | ## shader options for deferred rendering
|
---|
70 |
|
---|
71 | # tone mapping
|
---|
72 | useHDR=0
|
---|
73 |
|
---|
74 | # use antialiasing
|
---|
75 | useAA=0
|
---|
76 |
|
---|
77 | # show lense flare
|
---|
78 | useLenseFlare=1
|
---|
79 |
|
---|
80 | # use ssao / color bleeding
|
---|
81 | useAdvancedShading=1
|
---|
82 |
|
---|
83 | # skylight turbitity
|
---|
84 | turbitity=3.0f
|
---|
85 |
|
---|
86 |
|
---|
87 | ###############
|
---|
88 | ## ssao options
|
---|
89 |
|
---|
90 | # use full resolution ssao (vs. half resoltion)
|
---|
91 | ssaoUseFullResolution=1
|
---|
92 | # ssao kernel radius
|
---|
93 | #ssaoKernelRadius=8e-1f
|
---|
94 | ssaoKernelRadius=4e-1f
|
---|
95 | # ssao sample intensity
|
---|
96 | #ssaoSampleIntensity=0.2f
|
---|
97 | ssaoSampleIntensity=0.8f
|
---|
98 | # ssao temporal coherence factor
|
---|
99 | tempCohFactor=2000.0f
|
---|
100 | # ssao filter radius
|
---|
101 | ssaoFilterRadius=12.0f |
---|