-
Notifications
You must be signed in to change notification settings - Fork 14
/
rtg-math.vari.asd
36 lines (29 loc) · 1.38 KB
/
rtg-math.vari.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
;;;; rtg-math.asd
(asdf:defsystem #:rtg-math.vari
:description "Provides gpu equivalents of rtg-math's functionality"
:author "Chris Bagley <[email protected]>"
:license "BSD 2 Clause"
:serial t
:depends-on (:glsl-symbols :varjo :rtg-math)
:components ((:file "vari/package")
(:file "vari/base-maths")
(:file "vari/vectors/base-vectors")
(:file "vari/vectors/vectors")
(:file "vari/vectors/vector2/consing")
(:file "vari/vectors/vector3/consing")
(:file "vari/vectors/vector4/consing")
(:file "vari/matrices/base-matrices")
(:file "vari/matrices/matrices")
(:file "vari/matrices/matrix2/common")
(:file "vari/matrices/matrix2/consing")
(:file "vari/matrices/matrix3/common")
(:file "vari/matrices/matrix3/consing")
(:file "vari/matrices/matrix4/common")
(:file "vari/matrices/matrix4/consing")
(:file "vari/quaternions/common")
(:file "vari/quaternions/consing")
(:file "vari/polar-coords/polar")
(:file "vari/spherical-coords/spherical")
(:file "vari/projection/perspective/consing")
(:file "vari/projection/orthographic/consing")
(:file "vari/projection/environment")))