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