-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscenic.asd
143 lines (143 loc) · 4.21 KB
/
scenic.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
(asdf:defsystem #:scenic
:description "Describe scenic here"
:author "azimut <[email protected]>"
:license "MIT"
:version "0.0.1"
:serial t
:pathname "src"
:depends-on (#:alexandria
#:classimp
#:arrow-macros
#:bodge-ode
#:ode-blob
#:cepl
#:cepl.sdl2
#:cepl.skitter.sdl2
#:dirt
#:log4cl
#:livesupport
#:nineveh
#:nepal
#:cepl.fond
#:fare-memoization
;;#:png
#:rocketman
#:rtg-math.vari
#:serapeum
#:temporal-functions
#:with-setf)
:defsystem-depends-on (:deploy)
:build-operation "deploy-op"
:build-pathname "AppDir/scenic"
:entry-point "scenic:start"
:components
((:file "package")
(:file "uploadable")
(:file "event-loop")
(:file "skitter")
(:file "rocketman")
;;(:file "screenshot")
(:file "assets")
(:file "renderable")
(:file "camera/camera")
(:file "camera/defered")
(:file "material/lambert")
(:file "material/pbr")
(:file "material/material")
(:file "scene/scene")
(:file "scene/ibl")
(:file "scene/ibl-positional")
(:file "scene/ssao")
(:file "scene/scene-ssao")
(:file "screen")
(:file "state")
(:file "actors/drawable")
(:file "actors/occluder")
(:file "actors/paintable")
(:file "actors/actor")
(:file "lights/colors")
(:file "lights/light")
(:file "lights/directional")
(:file "lights/point")
(:file "lights/spot")
(:file "lights/lights")
(:file "lights/ibl/brdf")
(:file "lights/ibl/irradiance")
(:file "lights/ibl/prefilter")
(:file "lights/ibl/ibl")
(:file "scene/vxgi/vxgi")
(:file "scene/vxgi/vxgi-friduric")
(:file "scene/vxgi/vxgi-mcela")
(:file "scene/vxgi/scene")
(:file "scene/vxgi/voxelize")
(:file "postprocess/postprocess")
(:file "postprocess/hdr")
(:file "postprocess/hdr-acesfilm")
(:file "postprocess/dither")
(:file "postprocess/fxaa3")
(:file "postprocess/defer/defer")
(:file "postprocess/defer/ibl")
(:file "postprocess/defer/ssao")
(:file "postprocess/defer/ssr")
(:file "postprocess/defer/fog/iqfog")
(:file "postprocess/defer/fog/unrealfog")
(:file "postprocess/bloom/render")
(:file "postprocess/bloom/bloom")
(:file "postprocess/bloom/blit")
(:file "postprocess/dof/render")
(:file "postprocess/dof/dof")
(:file "postprocess/dof/blit")
(:file "camera/capture/capture")
(:file "camera/capture/capture6")
(:file "camera/capture/render")
(:file "camera/capture/paint")
(:file "camera/capture/draw")
(:file "render")
(:file "scenic")
(:file "videotape")
(:file "actors/untextured/untextured")
(:file "actors/untextured/defer")
(:file "actors/untextured/forward")
(:file "actors/untextured/forward-ibl")
(:file "actors/textured/textured")
(:file "actors/textured/forward")
(:file "actors/textured/forward-ibl")
(:file "actors/textured/defer")
(:file "actors/textured/assimp")
(:file "actors/textured/ambient-cg/ambient-cg")
(:file "actors/textured/ambient-cg/forward")
(:file "actors/textured/ambient-cg/forward-ibl")
(:file "actors/textured/ambient-cg/defer")
(:file "actors/assimp/bones-helpers")
(:file "actors/assimp/main")
(:file "animated")
(:file "actors/particles/base")
(:file "actors/particles/particles")
(:file "actors/particles/billboards")
(:file "actors/text/font")
(:file "actors/text/billboard")
(:file "actors/text/screen")
(:file "actors/cube/cube")
(:file "actors/cube/envmap")
(:file "actors/cube/hdri")
(:file "actors/cube/sky")
(:file "actors/sprite")
(:file "ode/ode")
(:file "ode/derived")
(:file "ode/scene")
(:file "ode/raycast")
(:file "ode/physic")
(:file "ode/camera")
(:file "ode/physics/box")
(:file "ode/physics/sphere")
(:file "ode/physics/cone")
(:file "ode/physics/newcyl")
(:file "register")
(:file "audio/nepal")
(:file "audio/emitter")
(:file "audio/sfx")
(:file "controls/control")
(:file "controls/ode")
(:file "controls/rotation")
(:file "controls/mouse")
(:file "demo")))