reflexion 0.3.15 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.doc/ext/reflex/key_event.cpp +3 -3
- data/.github/workflows/release-gem.yml +2 -16
- data/ChangeLog.md +13 -0
- data/README.md +205 -6
- data/VERSION +1 -1
- data/ext/reflex/key_event.cpp +3 -3
- data/include/reflex/defs.h +24 -24
- data/reflex.gemspec +3 -3
- data/samples/bats.rb +2 -2
- data/samples/ios/hello/hello/main.cpp +3 -3
- data/samples/ios/hello/hello.xcodeproj/project.pbxproj +868 -588
- data/samples/osx/hello/hello/main.cpp +4 -4
- data/samples/osx/hello/hello.xcodeproj/project.pbxproj +902 -594
- data/src/ios/event.h +25 -1
- data/src/ios/event.mm +95 -12
- data/src/ios/view_controller.mm +133 -1
- data/src/osx/event.mm +1 -1
- metadata +8 -8
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
8332B7B2195AF116001B79BD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8332B7B1195AF116001B79BD /* CoreText.framework */; };
|
|
12
12
|
8332B7B4195AF5CD001B79BD /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8332B7B3195AF5CD001B79BD /* ImageIO.framework */; };
|
|
13
13
|
8332B7B6195AF6D0001B79BD /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8332B7B5195AF6D0001B79BD /* MobileCoreServices.framework */; };
|
|
14
|
-
834393FD196AE839001ECC57 /* program.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 834393FC196AE839001ECC57 /* program.cpp */; };
|
|
15
14
|
8368864D194AA5B100923B8B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8368864C194AA5B100923B8B /* Foundation.framework */; };
|
|
16
15
|
8368864F194AA5B100923B8B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8368864E194AA5B100923B8B /* CoreGraphics.framework */; };
|
|
17
16
|
83688651194AA5B100923B8B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688650194AA5B100923B8B /* UIKit.framework */; };
|
|
@@ -19,92 +18,123 @@
|
|
|
19
18
|
83688655194AA5B100923B8B /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688654194AA5B100923B8B /* OpenGLES.framework */; };
|
|
20
19
|
8368865B194AA5B100923B8B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83688659194AA5B100923B8B /* InfoPlist.strings */; };
|
|
21
20
|
83688670194AA5B100923B8B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8368866F194AA5B100923B8B /* Images.xcassets */; };
|
|
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
|
-
|
|
21
|
+
8C9E9BB42FB58BBD0015F5D4 /* camera.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B6A2FB58BBD0015F5D4 /* camera.mm */; };
|
|
22
|
+
8C9E9BB62FB58BBD0015F5D4 /* painter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BAA2FB58BBD0015F5D4 /* painter.cpp */; };
|
|
23
|
+
8C9E9BB82FB58BBD0015F5D4 /* polygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BAD2FB58BBD0015F5D4 /* polygon.cpp */; };
|
|
24
|
+
8C9E9BBA2FB58BBD0015F5D4 /* bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B762FB58BBD0015F5D4 /* bitmap.cpp */; };
|
|
25
|
+
8C9E9BBC2FB58BBD0015F5D4 /* font.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B6B2FB58BBD0015F5D4 /* font.mm */; };
|
|
26
|
+
8C9E9BBD2FB58BBD0015F5D4 /* coord.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BA02FB58BBD0015F5D4 /* coord.cpp */; };
|
|
27
|
+
8C9E9BBE2FB58BBD0015F5D4 /* color_space.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B9E2FB58BBD0015F5D4 /* color_space.cpp */; };
|
|
28
|
+
8C9E9BBF2FB58BBD0015F5D4 /* shader_program.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B832FB58BBD0015F5D4 /* shader_program.cpp */; };
|
|
29
|
+
8C9E9BC02FB58BBD0015F5D4 /* shader_source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B852FB58BBD0015F5D4 /* shader_source.cpp */; };
|
|
30
|
+
8C9E9BC12FB58BBD0015F5D4 /* point.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BAB2FB58BBD0015F5D4 /* point.cpp */; };
|
|
31
|
+
8C9E9BC32FB58BBD0015F5D4 /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BB22FB58BBD0015F5D4 /* util.cpp */; };
|
|
32
|
+
8C9E9BC42FB58BBD0015F5D4 /* polyline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BAF2FB58BBD0015F5D4 /* polyline.cpp */; };
|
|
33
|
+
8C9E9BC62FB58BBD0015F5D4 /* bounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B9C2FB58BBD0015F5D4 /* bounds.cpp */; };
|
|
34
|
+
8C9E9BC72FB58BBD0015F5D4 /* painter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B7D2FB58BBD0015F5D4 /* painter.cpp */; };
|
|
35
|
+
8C9E9BCA2FB58BBD0015F5D4 /* render_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B7F2FB58BBD0015F5D4 /* render_buffer.cpp */; };
|
|
36
|
+
8C9E9BCB2FB58BBD0015F5D4 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BA32FB58BBD0015F5D4 /* font.cpp */; };
|
|
37
|
+
8C9E9BCC2FB58BBD0015F5D4 /* rays.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B6C2FB58BBD0015F5D4 /* rays.mm */; };
|
|
38
|
+
8C9E9BCD2FB58BBD0015F5D4 /* shader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B812FB58BBD0015F5D4 /* shader.cpp */; };
|
|
39
|
+
8C9E9BD02FB58BBD0015F5D4 /* frame_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B7A2FB58BBD0015F5D4 /* frame_buffer.cpp */; };
|
|
40
|
+
8C9E9BD12FB58BBD0015F5D4 /* opengl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B7C2FB58BBD0015F5D4 /* opengl.cpp */; };
|
|
41
|
+
8C9E9BD22FB58BBD0015F5D4 /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BA82FB58BBD0015F5D4 /* matrix.cpp */; };
|
|
42
|
+
8C9E9BD32FB58BBD0015F5D4 /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BA62FB58BBD0015F5D4 /* image.cpp */; };
|
|
43
|
+
8C9E9BD42FB58BBD0015F5D4 /* opengl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B6E2FB58BBD0015F5D4 /* opengl.mm */; };
|
|
44
|
+
8C9E9BD52FB58BBD0015F5D4 /* color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B9D2FB58BBD0015F5D4 /* color.cpp */; };
|
|
45
|
+
8C9E9BD62FB58BBD0015F5D4 /* color_space.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B782FB58BBD0015F5D4 /* color_space.cpp */; };
|
|
46
|
+
8C9E9BD92FB58BBD0015F5D4 /* texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B872FB58BBD0015F5D4 /* texture.cpp */; };
|
|
47
|
+
8C9E9BDD2FB58BBD0015F5D4 /* bitmap.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9B692FB58BBD0015F5D4 /* bitmap.mm */; };
|
|
48
|
+
8C9E9BDE2FB58BBD0015F5D4 /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9BA12FB58BBD0015F5D4 /* exception.cpp */; };
|
|
49
|
+
8C9EAF032FB58E740015F5D4 /* Splines.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EA7072FB58E740015F5D4 /* Splines.cpp */; };
|
|
50
|
+
8C9EAF3E2FB58E740015F5D4 /* clipper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9E9C602FB58E740015F5D4 /* clipper.cpp */; };
|
|
51
|
+
8C9EAFBC2FB58FF70015F5D4 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EAFBB2FB58FF70015F5D4 /* AVFoundation.framework */; };
|
|
52
|
+
8C9EAFBE2FB590060015F5D4 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EAFBD2FB590060015F5D4 /* CoreImage.framework */; };
|
|
53
|
+
8C9EAFC02FB590260015F5D4 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EAFBF2FB590260015F5D4 /* CoreMedia.framework */; };
|
|
54
|
+
8C9EAFC22FB5902F0015F5D4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EAFC12FB5902F0015F5D4 /* CoreVideo.framework */; };
|
|
55
|
+
8C9EB0CA2FB590FF0015F5D4 /* event.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB06A2FB590FF0015F5D4 /* event.mm */; };
|
|
56
|
+
8C9EB0CE2FB590FF0015F5D4 /* fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0AD2FB590FF0015F5D4 /* fixture.cpp */; };
|
|
57
|
+
8C9EB0CF2FB590FF0015F5D4 /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0AA2FB590FF0015F5D4 /* exception.cpp */; };
|
|
58
|
+
8C9EB0D22FB590FF0015F5D4 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0A92FB590FF0015F5D4 /* event.cpp */; };
|
|
59
|
+
8C9EB0D32FB590FF0015F5D4 /* world.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0C42FB590FF0015F5D4 /* world.cpp */; };
|
|
60
|
+
8C9EB0D42FB590FF0015F5D4 /* screen.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB06E2FB590FF0015F5D4 /* screen.mm */; };
|
|
61
|
+
8C9EB0D62FB590FF0015F5D4 /* image_view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0B02FB590FF0015F5D4 /* image_view.cpp */; };
|
|
62
|
+
8C9EB0D82FB590FF0015F5D4 /* device.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0A72FB590FF0015F5D4 /* device.cpp */; };
|
|
63
|
+
8C9EB0D92FB590FF0015F5D4 /* shape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0BA2FB590FF0015F5D4 /* shape.cpp */; };
|
|
64
|
+
8C9EB0DB2FB590FF0015F5D4 /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0BE2FB590FF0015F5D4 /* timer.cpp */; };
|
|
65
|
+
8C9EB0DC2FB590FF0015F5D4 /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0C22FB590FF0015F5D4 /* window.cpp */; };
|
|
66
|
+
8C9EB0DD2FB590FF0015F5D4 /* gamepad.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB06B2FB590FF0015F5D4 /* gamepad.mm */; };
|
|
67
|
+
8C9EB0E22FB590FF0015F5D4 /* selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0B82FB590FF0015F5D4 /* selector.cpp */; };
|
|
68
|
+
8C9EB0E52FB590FF0015F5D4 /* midi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0B22FB590FF0015F5D4 /* midi.cpp */; };
|
|
69
|
+
8C9EB0E72FB590FF0015F5D4 /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0722FB590FF0015F5D4 /* window.mm */; };
|
|
70
|
+
8C9EB0EA2FB590FF0015F5D4 /* pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0B42FB590FF0015F5D4 /* pointer.cpp */; };
|
|
71
|
+
8C9EB0EB2FB590FF0015F5D4 /* filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0AB2FB590FF0015F5D4 /* filter.cpp */; };
|
|
72
|
+
8C9EB0EC2FB590FF0015F5D4 /* gamepad.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0AF2FB590FF0015F5D4 /* gamepad.cpp */; };
|
|
73
|
+
8C9EB0ED2FB590FF0015F5D4 /* device.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0682FB590FF0015F5D4 /* device.mm */; };
|
|
74
|
+
8C9EB0EF2FB590FF0015F5D4 /* style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0BC2FB590FF0015F5D4 /* style.cpp */; };
|
|
75
|
+
8C9EB0F32FB590FF0015F5D4 /* reflex.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB06C2FB590FF0015F5D4 /* reflex.mm */; };
|
|
76
|
+
8C9EB0F42FB590FF0015F5D4 /* application.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0A42FB590FF0015F5D4 /* application.cpp */; };
|
|
77
|
+
8C9EB0F52FB590FF0015F5D4 /* body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0A62FB590FF0015F5D4 /* body.cpp */; };
|
|
78
|
+
8C9EB0F62FB590FF0015F5D4 /* app_delegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0652FB590FF0015F5D4 /* app_delegate.mm */; };
|
|
79
|
+
8C9EB0F82FB590FF0015F5D4 /* reflex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0B62FB590FF0015F5D4 /* reflex.cpp */; };
|
|
80
|
+
8C9EB0F92FB590FF0015F5D4 /* view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0C02FB590FF0015F5D4 /* view.cpp */; };
|
|
81
|
+
8C9EB0FA2FB590FF0015F5D4 /* view_controller.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0702FB590FF0015F5D4 /* view_controller.mm */; };
|
|
82
|
+
8C9EB0FD2FB590FF0015F5D4 /* application.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB0672FB590FF0015F5D4 /* application.mm */; };
|
|
83
|
+
8C9EB3D42FB591A90015F5D4 /* b2_gear_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1F62FB591A90015F5D4 /* b2_gear_joint.cpp */; };
|
|
84
|
+
8C9EB3DA2FB591A90015F5D4 /* b2_polygon_circle_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2022FB591A90015F5D4 /* b2_polygon_circle_contact.cpp */; };
|
|
85
|
+
8C9EB3DC2FB591A90015F5D4 /* b2_weld_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB20D2FB591A90015F5D4 /* b2_weld_joint.cpp */; };
|
|
86
|
+
8C9EB3E32FB591A90015F5D4 /* b2_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1FB2FB591A90015F5D4 /* b2_joint.cpp */; };
|
|
87
|
+
8C9EB3E42FB591A90015F5D4 /* b2_distance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1C02FB591A90015F5D4 /* b2_distance.cpp */; };
|
|
88
|
+
8C9EB3EA2FB591A90015F5D4 /* b2_edge_circle_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1ED2FB591A90015F5D4 /* b2_edge_circle_contact.cpp */; };
|
|
89
|
+
8C9EB3EF2FB591A90015F5D4 /* b2_pulley_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2092FB591A90015F5D4 /* b2_pulley_joint.cpp */; };
|
|
90
|
+
8C9EB3F42FB591A90015F5D4 /* b2_revolute_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB20B2FB591A90015F5D4 /* b2_revolute_joint.cpp */; };
|
|
91
|
+
8C9EB3F72FB591A90015F5D4 /* b2_rope.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2162FB591A90015F5D4 /* b2_rope.cpp */; };
|
|
92
|
+
8C9EB3F92FB591A90015F5D4 /* b2_contact_solver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1E82FB591A90015F5D4 /* b2_contact_solver.cpp */; };
|
|
93
|
+
8C9EB3FE2FB591A90015F5D4 /* b2_circle_shape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1B62FB591A90015F5D4 /* b2_circle_shape.cpp */; };
|
|
94
|
+
8C9EB3FF2FB591A90015F5D4 /* b2_world.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2112FB591A90015F5D4 /* b2_world.cpp */; };
|
|
95
|
+
8C9EB4012FB591A90015F5D4 /* b2_prismatic_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2072FB591A90015F5D4 /* b2_prismatic_joint.cpp */; };
|
|
96
|
+
8C9EB4032FB591A90015F5D4 /* b2_chain_circle_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1DB2FB591A90015F5D4 /* b2_chain_circle_contact.cpp */; };
|
|
97
|
+
8C9EB4042FB591A90015F5D4 /* RtMidi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2F52FB591A90015F5D4 /* RtMidi.cpp */; };
|
|
98
|
+
8C9EB4052FB591A90015F5D4 /* b2_draw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1CD2FB591A90015F5D4 /* b2_draw.cpp */; };
|
|
99
|
+
8C9EB4092FB591A90015F5D4 /* b2_collide_circle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1B82FB591A90015F5D4 /* b2_collide_circle.cpp */; };
|
|
100
|
+
8C9EB40C2FB591A90015F5D4 /* b2_circle_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1E12FB591A90015F5D4 /* b2_circle_contact.cpp */; };
|
|
101
|
+
8C9EB4142FB591A90015F5D4 /* b2_fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1F22FB591A90015F5D4 /* b2_fixture.cpp */; };
|
|
102
|
+
8C9EB4192FB591A90015F5D4 /* b2_math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1CF2FB591A90015F5D4 /* b2_math.cpp */; };
|
|
103
|
+
8C9EB41D2FB591A90015F5D4 /* b2_timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1D52FB591A90015F5D4 /* b2_timer.cpp */; };
|
|
104
|
+
8C9EB41F2FB591A90015F5D4 /* b2_polygon_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2052FB591A90015F5D4 /* b2_polygon_contact.cpp */; };
|
|
105
|
+
8C9EB4212FB591A90015F5D4 /* b2_time_of_impact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1C82FB591A90015F5D4 /* b2_time_of_impact.cpp */; };
|
|
106
|
+
8C9EB4272FB591A90015F5D4 /* b2_collision.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1BE2FB591A90015F5D4 /* b2_collision.cpp */; };
|
|
107
|
+
8C9EB42B2FB591A90015F5D4 /* b2_motor_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1FD2FB591A90015F5D4 /* b2_motor_joint.cpp */; };
|
|
108
|
+
8C9EB42C2FB591A90015F5D4 /* b2_block_allocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1CB2FB591A90015F5D4 /* b2_block_allocator.cpp */; };
|
|
109
|
+
8C9EB4372FB591A90015F5D4 /* b2_collide_edge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1BA2FB591A90015F5D4 /* b2_collide_edge.cpp */; };
|
|
110
|
+
8C9EB4382FB591A90015F5D4 /* b2_chain_shape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1B42FB591A90015F5D4 /* b2_chain_shape.cpp */; };
|
|
111
|
+
8C9EB4392FB591A90015F5D4 /* b2_collide_polygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1BC2FB591A90015F5D4 /* b2_collide_polygon.cpp */; };
|
|
112
|
+
8C9EB43E2FB591A90015F5D4 /* b2_body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1D82FB591A90015F5D4 /* b2_body.cpp */; };
|
|
113
|
+
8C9EB4402FB591A90015F5D4 /* b2_dynamic_tree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1C22FB591A90015F5D4 /* b2_dynamic_tree.cpp */; };
|
|
114
|
+
8C9EB4452FB591A90015F5D4 /* b2_mouse_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1FF2FB591A90015F5D4 /* b2_mouse_joint.cpp */; };
|
|
115
|
+
8C9EB44C2FB591A90015F5D4 /* b2_settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1D12FB591A90015F5D4 /* b2_settings.cpp */; };
|
|
116
|
+
8C9EB4502FB591A90015F5D4 /* b2_stack_allocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1D32FB591A90015F5D4 /* b2_stack_allocator.cpp */; };
|
|
117
|
+
8C9EB4522FB591A90015F5D4 /* b2_polygon_shape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1C62FB591A90015F5D4 /* b2_polygon_shape.cpp */; };
|
|
118
|
+
8C9EB4582FB591A90015F5D4 /* b2_contact_manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1E52FB591A90015F5D4 /* b2_contact_manager.cpp */; };
|
|
119
|
+
8C9EB4592FB591A90015F5D4 /* b2_island.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1F92FB591A90015F5D4 /* b2_island.cpp */; };
|
|
120
|
+
8C9EB45A2FB591A90015F5D4 /* b2_edge_shape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1C42FB591A90015F5D4 /* b2_edge_shape.cpp */; };
|
|
121
|
+
8C9EB45B2FB591A90015F5D4 /* b2_edge_polygon_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1F02FB591A90015F5D4 /* b2_edge_polygon_contact.cpp */; };
|
|
122
|
+
8C9EB4622FB591A90015F5D4 /* b2_friction_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1F42FB591A90015F5D4 /* b2_friction_joint.cpp */; };
|
|
123
|
+
8C9EB4632FB591A90015F5D4 /* b2_wheel_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB20F2FB591A90015F5D4 /* b2_wheel_joint.cpp */; };
|
|
124
|
+
8C9EB4642FB591A90015F5D4 /* b2_distance_joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1EA2FB591A90015F5D4 /* b2_distance_joint.cpp */; };
|
|
125
|
+
8C9EB46F2FB591A90015F5D4 /* b2_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1E32FB591A90015F5D4 /* b2_contact.cpp */; };
|
|
126
|
+
8C9EB4712FB591A90015F5D4 /* b2_chain_polygon_contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1DE2FB591A90015F5D4 /* b2_chain_polygon_contact.cpp */; };
|
|
127
|
+
8C9EB4722FB591A90015F5D4 /* b2_broad_phase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB1B22FB591A90015F5D4 /* b2_broad_phase.cpp */; };
|
|
128
|
+
8C9EB4742FB591A90015F5D4 /* b2_world_callbacks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB2132FB591A90015F5D4 /* b2_world_callbacks.cpp */; };
|
|
129
|
+
8C9EB4AD2FB592500015F5D4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EB4AC2FB592500015F5D4 /* GameController.framework */; };
|
|
130
|
+
8C9EB4AF2FB5928D0015F5D4 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EB4AE2FB5928D0015F5D4 /* QuartzCore.framework */; };
|
|
131
|
+
8C9EB4B12FB592950015F5D4 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EB4B02FB592950015F5D4 /* CoreMotion.framework */; };
|
|
132
|
+
8C9EB4B32FB595B80015F5D4 /* CoreMIDI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9EB4B22FB595B80015F5D4 /* CoreMIDI.framework */; };
|
|
133
|
+
8C9EB4D12FB6D0910015F5D4 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB4C52FB6D0910015F5D4 /* string.cpp */; };
|
|
134
|
+
8C9EB4D22FB6D0910015F5D4 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB4C12FB6D0910015F5D4 /* debug.cpp */; };
|
|
135
|
+
8C9EB4D32FB6D0910015F5D4 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB4C72FB6D0910015F5D4 /* time.cpp */; };
|
|
136
|
+
8C9EB4D42FB6D0910015F5D4 /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB4C32FB6D0910015F5D4 /* exception.cpp */; };
|
|
137
|
+
8C9EB4D52FB6D0910015F5D4 /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C9EB4C92FB6D0910015F5D4 /* util.cpp */; };
|
|
108
138
|
/* End PBXBuildFile section */
|
|
109
139
|
|
|
110
140
|
/* Begin PBXFileReference section */
|
|
@@ -112,7 +142,6 @@
|
|
|
112
142
|
8332B7B1195AF116001B79BD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
|
|
113
143
|
8332B7B3195AF5CD001B79BD /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
|
|
114
144
|
8332B7B5195AF6D0001B79BD /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
|
|
115
|
-
834393FC196AE839001ECC57 /* program.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = program.cpp; path = ../../../../../rays/src/ios/program.cpp; sourceTree = "<group>"; };
|
|
116
145
|
83688649194AA5B100923B8B /* hello.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = hello.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
117
146
|
8368864C194AA5B100923B8B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
|
118
147
|
8368864E194AA5B100923B8B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
|
@@ -123,189 +152,217 @@
|
|
|
123
152
|
8368865A194AA5B100923B8B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
|
124
153
|
8368865E194AA5B100923B8B /* hello-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "hello-Prefix.pch"; sourceTree = "<group>"; };
|
|
125
154
|
8368866F194AA5B100923B8B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
155
|
+
8C9E9B512FB58BAB0015F5D4 /* bitmap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bitmap.h; sourceTree = "<group>"; };
|
|
156
|
+
8C9E9B522FB58BAB0015F5D4 /* bounds.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bounds.h; sourceTree = "<group>"; };
|
|
157
|
+
8C9E9B532FB58BAB0015F5D4 /* camera.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = camera.h; sourceTree = "<group>"; };
|
|
158
|
+
8C9E9B542FB58BAB0015F5D4 /* color.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = color.h; sourceTree = "<group>"; };
|
|
159
|
+
8C9E9B552FB58BAB0015F5D4 /* color_space.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = color_space.h; sourceTree = "<group>"; };
|
|
160
|
+
8C9E9B562FB58BAB0015F5D4 /* coord.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = coord.h; sourceTree = "<group>"; };
|
|
161
|
+
8C9E9B572FB58BAB0015F5D4 /* debug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
|
|
162
|
+
8C9E9B582FB58BAB0015F5D4 /* defs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = defs.h; sourceTree = "<group>"; };
|
|
163
|
+
8C9E9B592FB58BAB0015F5D4 /* exception.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
|
|
164
|
+
8C9E9B5A2FB58BAB0015F5D4 /* font.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = font.h; sourceTree = "<group>"; };
|
|
165
|
+
8C9E9B5B2FB58BAB0015F5D4 /* image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = "<group>"; };
|
|
166
|
+
8C9E9B5C2FB58BAB0015F5D4 /* matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = matrix.h; sourceTree = "<group>"; };
|
|
167
|
+
8C9E9B5D2FB58BAB0015F5D4 /* painter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = painter.h; sourceTree = "<group>"; };
|
|
168
|
+
8C9E9B5E2FB58BAB0015F5D4 /* point.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = point.h; sourceTree = "<group>"; };
|
|
169
|
+
8C9E9B5F2FB58BAB0015F5D4 /* polygon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = polygon.h; sourceTree = "<group>"; };
|
|
170
|
+
8C9E9B602FB58BAB0015F5D4 /* polyline.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = polyline.h; sourceTree = "<group>"; };
|
|
171
|
+
8C9E9B612FB58BAB0015F5D4 /* rays.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = rays.h; sourceTree = "<group>"; };
|
|
172
|
+
8C9E9B622FB58BAB0015F5D4 /* ruby.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ruby.h; sourceTree = "<group>"; };
|
|
173
|
+
8C9E9B632FB58BAB0015F5D4 /* shader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shader.h; sourceTree = "<group>"; };
|
|
174
|
+
8C9E9B642FB58BAB0015F5D4 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
|
|
175
|
+
8C9E9B662FB58BAB0015F5D4 /* rays.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = rays.h; sourceTree = "<group>"; };
|
|
176
|
+
8C9E9B682FB58BBD0015F5D4 /* bitmap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bitmap.h; sourceTree = "<group>"; };
|
|
177
|
+
8C9E9B692FB58BBD0015F5D4 /* bitmap.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = bitmap.mm; sourceTree = "<group>"; };
|
|
178
|
+
8C9E9B6A2FB58BBD0015F5D4 /* camera.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = camera.mm; sourceTree = "<group>"; };
|
|
179
|
+
8C9E9B6B2FB58BBD0015F5D4 /* font.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = font.mm; sourceTree = "<group>"; };
|
|
180
|
+
8C9E9B6C2FB58BBD0015F5D4 /* rays.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = rays.mm; sourceTree = "<group>"; };
|
|
181
|
+
8C9E9B6E2FB58BBD0015F5D4 /* opengl.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = opengl.mm; sourceTree = "<group>"; };
|
|
182
|
+
8C9E9B762FB58BBD0015F5D4 /* bitmap.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = bitmap.cpp; sourceTree = "<group>"; };
|
|
183
|
+
8C9E9B772FB58BBD0015F5D4 /* color_space.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = color_space.h; sourceTree = "<group>"; };
|
|
184
|
+
8C9E9B782FB58BBD0015F5D4 /* color_space.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = color_space.cpp; sourceTree = "<group>"; };
|
|
185
|
+
8C9E9B792FB58BBD0015F5D4 /* frame_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = frame_buffer.h; sourceTree = "<group>"; };
|
|
186
|
+
8C9E9B7A2FB58BBD0015F5D4 /* frame_buffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = frame_buffer.cpp; sourceTree = "<group>"; };
|
|
187
|
+
8C9E9B7B2FB58BBD0015F5D4 /* opengl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = opengl.h; sourceTree = "<group>"; };
|
|
188
|
+
8C9E9B7C2FB58BBD0015F5D4 /* opengl.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = opengl.cpp; sourceTree = "<group>"; };
|
|
189
|
+
8C9E9B7D2FB58BBD0015F5D4 /* painter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = painter.cpp; sourceTree = "<group>"; };
|
|
190
|
+
8C9E9B7E2FB58BBD0015F5D4 /* render_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = render_buffer.h; sourceTree = "<group>"; };
|
|
191
|
+
8C9E9B7F2FB58BBD0015F5D4 /* render_buffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = render_buffer.cpp; sourceTree = "<group>"; };
|
|
192
|
+
8C9E9B802FB58BBD0015F5D4 /* shader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shader.h; sourceTree = "<group>"; };
|
|
193
|
+
8C9E9B812FB58BBD0015F5D4 /* shader.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = shader.cpp; sourceTree = "<group>"; };
|
|
194
|
+
8C9E9B822FB58BBD0015F5D4 /* shader_program.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shader_program.h; sourceTree = "<group>"; };
|
|
195
|
+
8C9E9B832FB58BBD0015F5D4 /* shader_program.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = shader_program.cpp; sourceTree = "<group>"; };
|
|
196
|
+
8C9E9B842FB58BBD0015F5D4 /* shader_source.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shader_source.h; sourceTree = "<group>"; };
|
|
197
|
+
8C9E9B852FB58BBD0015F5D4 /* shader_source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = shader_source.cpp; sourceTree = "<group>"; };
|
|
198
|
+
8C9E9B862FB58BBD0015F5D4 /* texture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = texture.h; sourceTree = "<group>"; };
|
|
199
|
+
8C9E9B872FB58BBD0015F5D4 /* texture.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = texture.cpp; sourceTree = "<group>"; };
|
|
200
|
+
8C9E9B9B2FB58BBD0015F5D4 /* bitmap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bitmap.h; sourceTree = "<group>"; };
|
|
201
|
+
8C9E9B9C2FB58BBD0015F5D4 /* bounds.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = bounds.cpp; sourceTree = "<group>"; };
|
|
202
|
+
8C9E9B9D2FB58BBD0015F5D4 /* color.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = color.cpp; sourceTree = "<group>"; };
|
|
203
|
+
8C9E9B9E2FB58BBD0015F5D4 /* color_space.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = color_space.cpp; sourceTree = "<group>"; };
|
|
204
|
+
8C9E9B9F2FB58BBD0015F5D4 /* coord.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = coord.h; sourceTree = "<group>"; };
|
|
205
|
+
8C9E9BA02FB58BBD0015F5D4 /* coord.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = coord.cpp; sourceTree = "<group>"; };
|
|
206
|
+
8C9E9BA12FB58BBD0015F5D4 /* exception.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
|
|
207
|
+
8C9E9BA22FB58BBD0015F5D4 /* font.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = font.h; sourceTree = "<group>"; };
|
|
208
|
+
8C9E9BA32FB58BBD0015F5D4 /* font.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = font.cpp; sourceTree = "<group>"; };
|
|
209
|
+
8C9E9BA42FB58BBD0015F5D4 /* glm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = glm.h; sourceTree = "<group>"; };
|
|
210
|
+
8C9E9BA52FB58BBD0015F5D4 /* image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = "<group>"; };
|
|
211
|
+
8C9E9BA62FB58BBD0015F5D4 /* image.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = "<group>"; };
|
|
212
|
+
8C9E9BA72FB58BBD0015F5D4 /* matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = matrix.h; sourceTree = "<group>"; };
|
|
213
|
+
8C9E9BA82FB58BBD0015F5D4 /* matrix.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = matrix.cpp; sourceTree = "<group>"; };
|
|
214
|
+
8C9E9BA92FB58BBD0015F5D4 /* painter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = painter.h; sourceTree = "<group>"; };
|
|
215
|
+
8C9E9BAA2FB58BBD0015F5D4 /* painter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = painter.cpp; sourceTree = "<group>"; };
|
|
216
|
+
8C9E9BAB2FB58BBD0015F5D4 /* point.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = point.cpp; sourceTree = "<group>"; };
|
|
217
|
+
8C9E9BAC2FB58BBD0015F5D4 /* polygon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = polygon.h; sourceTree = "<group>"; };
|
|
218
|
+
8C9E9BAD2FB58BBD0015F5D4 /* polygon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = polygon.cpp; sourceTree = "<group>"; };
|
|
219
|
+
8C9E9BAE2FB58BBD0015F5D4 /* polyline.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = polyline.h; sourceTree = "<group>"; };
|
|
220
|
+
8C9E9BAF2FB58BBD0015F5D4 /* polyline.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = polyline.cpp; sourceTree = "<group>"; };
|
|
221
|
+
8C9E9BB02FB58BBD0015F5D4 /* renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = renderer.h; sourceTree = "<group>"; };
|
|
222
|
+
8C9E9BB12FB58BBD0015F5D4 /* texture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = texture.h; sourceTree = "<group>"; };
|
|
223
|
+
8C9E9BB22FB58BBD0015F5D4 /* util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = util.cpp; sourceTree = "<group>"; };
|
|
224
|
+
8C9E9C602FB58E740015F5D4 /* clipper.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = clipper.cpp; sourceTree = "<group>"; };
|
|
225
|
+
8C9EA7072FB58E740015F5D4 /* Splines.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Splines.cpp; sourceTree = "<group>"; };
|
|
226
|
+
8C9EAFBB2FB58FF70015F5D4 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
|
|
227
|
+
8C9EAFBD2FB590060015F5D4 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
|
|
228
|
+
8C9EAFBF2FB590260015F5D4 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
|
|
229
|
+
8C9EAFC12FB5902F0015F5D4 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
|
|
230
|
+
8C9EAFD52FB5906B0015F5D4 /* application.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = application.h; sourceTree = "<group>"; };
|
|
231
|
+
8C9EAFD62FB5906B0015F5D4 /* debug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
|
|
232
|
+
8C9EAFD72FB5906B0015F5D4 /* defs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = defs.h; sourceTree = "<group>"; };
|
|
233
|
+
8C9EAFD82FB5906B0015F5D4 /* device.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = device.h; sourceTree = "<group>"; };
|
|
234
|
+
8C9EAFD92FB5906B0015F5D4 /* event.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; };
|
|
235
|
+
8C9EAFDA2FB5906B0015F5D4 /* exception.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
|
|
236
|
+
8C9EAFDB2FB5906B0015F5D4 /* filter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = filter.h; sourceTree = "<group>"; };
|
|
237
|
+
8C9EAFDC2FB5906B0015F5D4 /* gamepad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gamepad.h; sourceTree = "<group>"; };
|
|
238
|
+
8C9EAFDD2FB5906B0015F5D4 /* image_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = image_view.h; sourceTree = "<group>"; };
|
|
239
|
+
8C9EAFDE2FB5906B0015F5D4 /* midi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = midi.h; sourceTree = "<group>"; };
|
|
240
|
+
8C9EAFDF2FB5906B0015F5D4 /* pointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pointer.h; sourceTree = "<group>"; };
|
|
241
|
+
8C9EAFE02FB5906B0015F5D4 /* reflex.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = reflex.h; sourceTree = "<group>"; };
|
|
242
|
+
8C9EAFE12FB5906B0015F5D4 /* ruby.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ruby.h; sourceTree = "<group>"; };
|
|
243
|
+
8C9EAFE22FB5906B0015F5D4 /* screen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = screen.h; sourceTree = "<group>"; };
|
|
244
|
+
8C9EAFE32FB5906B0015F5D4 /* selector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = selector.h; sourceTree = "<group>"; };
|
|
245
|
+
8C9EAFE42FB5906B0015F5D4 /* shape.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shape.h; sourceTree = "<group>"; };
|
|
246
|
+
8C9EAFE52FB5906B0015F5D4 /* style.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = style.h; sourceTree = "<group>"; };
|
|
247
|
+
8C9EAFE62FB5906B0015F5D4 /* timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = "<group>"; };
|
|
248
|
+
8C9EAFE72FB5906B0015F5D4 /* view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = view.h; sourceTree = "<group>"; };
|
|
249
|
+
8C9EAFE82FB5906B0015F5D4 /* window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
|
|
250
|
+
8C9EAFEA2FB5906B0015F5D4 /* reflex.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = reflex.h; sourceTree = "<group>"; };
|
|
251
|
+
8C9EB0642FB590FF0015F5D4 /* app_delegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = app_delegate.h; sourceTree = "<group>"; };
|
|
252
|
+
8C9EB0652FB590FF0015F5D4 /* app_delegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = app_delegate.mm; sourceTree = "<group>"; };
|
|
253
|
+
8C9EB0662FB590FF0015F5D4 /* application.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = application.h; sourceTree = "<group>"; };
|
|
254
|
+
8C9EB0672FB590FF0015F5D4 /* application.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = application.mm; sourceTree = "<group>"; };
|
|
255
|
+
8C9EB0682FB590FF0015F5D4 /* device.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = device.mm; sourceTree = "<group>"; };
|
|
256
|
+
8C9EB0692FB590FF0015F5D4 /* event.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; };
|
|
257
|
+
8C9EB06A2FB590FF0015F5D4 /* event.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = event.mm; sourceTree = "<group>"; };
|
|
258
|
+
8C9EB06B2FB590FF0015F5D4 /* gamepad.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = gamepad.mm; sourceTree = "<group>"; };
|
|
259
|
+
8C9EB06C2FB590FF0015F5D4 /* reflex.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = reflex.mm; sourceTree = "<group>"; };
|
|
260
|
+
8C9EB06D2FB590FF0015F5D4 /* screen.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = screen.h; sourceTree = "<group>"; };
|
|
261
|
+
8C9EB06E2FB590FF0015F5D4 /* screen.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = screen.mm; sourceTree = "<group>"; };
|
|
262
|
+
8C9EB06F2FB590FF0015F5D4 /* view_controller.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = view_controller.h; sourceTree = "<group>"; };
|
|
263
|
+
8C9EB0702FB590FF0015F5D4 /* view_controller.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = view_controller.mm; sourceTree = "<group>"; };
|
|
264
|
+
8C9EB0712FB590FF0015F5D4 /* window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
|
|
265
|
+
8C9EB0722FB590FF0015F5D4 /* window.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = window.mm; sourceTree = "<group>"; };
|
|
266
|
+
8C9EB0A32FB590FF0015F5D4 /* application.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = application.h; sourceTree = "<group>"; };
|
|
267
|
+
8C9EB0A42FB590FF0015F5D4 /* application.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = application.cpp; sourceTree = "<group>"; };
|
|
268
|
+
8C9EB0A52FB590FF0015F5D4 /* body.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = body.h; sourceTree = "<group>"; };
|
|
269
|
+
8C9EB0A62FB590FF0015F5D4 /* body.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = body.cpp; sourceTree = "<group>"; };
|
|
270
|
+
8C9EB0A72FB590FF0015F5D4 /* device.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = device.cpp; sourceTree = "<group>"; };
|
|
271
|
+
8C9EB0A82FB590FF0015F5D4 /* event.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; };
|
|
272
|
+
8C9EB0A92FB590FF0015F5D4 /* event.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = "<group>"; };
|
|
273
|
+
8C9EB0AA2FB590FF0015F5D4 /* exception.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
|
|
274
|
+
8C9EB0AB2FB590FF0015F5D4 /* filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = filter.cpp; sourceTree = "<group>"; };
|
|
275
|
+
8C9EB0AC2FB590FF0015F5D4 /* fixture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fixture.h; sourceTree = "<group>"; };
|
|
276
|
+
8C9EB0AD2FB590FF0015F5D4 /* fixture.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = fixture.cpp; sourceTree = "<group>"; };
|
|
277
|
+
8C9EB0AE2FB590FF0015F5D4 /* gamepad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gamepad.h; sourceTree = "<group>"; };
|
|
278
|
+
8C9EB0AF2FB590FF0015F5D4 /* gamepad.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = gamepad.cpp; sourceTree = "<group>"; };
|
|
279
|
+
8C9EB0B02FB590FF0015F5D4 /* image_view.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = image_view.cpp; sourceTree = "<group>"; };
|
|
280
|
+
8C9EB0B12FB590FF0015F5D4 /* midi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = midi.h; sourceTree = "<group>"; };
|
|
281
|
+
8C9EB0B22FB590FF0015F5D4 /* midi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = midi.cpp; sourceTree = "<group>"; };
|
|
282
|
+
8C9EB0B32FB590FF0015F5D4 /* pointer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pointer.h; sourceTree = "<group>"; };
|
|
283
|
+
8C9EB0B42FB590FF0015F5D4 /* pointer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = pointer.cpp; sourceTree = "<group>"; };
|
|
284
|
+
8C9EB0B52FB590FF0015F5D4 /* queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = queue.h; sourceTree = "<group>"; };
|
|
285
|
+
8C9EB0B62FB590FF0015F5D4 /* reflex.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = reflex.cpp; sourceTree = "<group>"; };
|
|
286
|
+
8C9EB0B72FB590FF0015F5D4 /* selector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = selector.h; sourceTree = "<group>"; };
|
|
287
|
+
8C9EB0B82FB590FF0015F5D4 /* selector.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = selector.cpp; sourceTree = "<group>"; };
|
|
288
|
+
8C9EB0B92FB590FF0015F5D4 /* shape.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = shape.h; sourceTree = "<group>"; };
|
|
289
|
+
8C9EB0BA2FB590FF0015F5D4 /* shape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = shape.cpp; sourceTree = "<group>"; };
|
|
290
|
+
8C9EB0BB2FB590FF0015F5D4 /* style.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = style.h; sourceTree = "<group>"; };
|
|
291
|
+
8C9EB0BC2FB590FF0015F5D4 /* style.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = style.cpp; sourceTree = "<group>"; };
|
|
292
|
+
8C9EB0BD2FB590FF0015F5D4 /* timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = "<group>"; };
|
|
293
|
+
8C9EB0BE2FB590FF0015F5D4 /* timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = timer.cpp; sourceTree = "<group>"; };
|
|
294
|
+
8C9EB0BF2FB590FF0015F5D4 /* view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = view.h; sourceTree = "<group>"; };
|
|
295
|
+
8C9EB0C02FB590FF0015F5D4 /* view.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = view.cpp; sourceTree = "<group>"; };
|
|
296
|
+
8C9EB0C12FB590FF0015F5D4 /* window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
|
|
297
|
+
8C9EB0C22FB590FF0015F5D4 /* window.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = "<group>"; };
|
|
298
|
+
8C9EB0C32FB590FF0015F5D4 /* world.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = world.h; sourceTree = "<group>"; };
|
|
299
|
+
8C9EB0C42FB590FF0015F5D4 /* world.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = world.cpp; sourceTree = "<group>"; };
|
|
300
|
+
8C9EB1B22FB591A90015F5D4 /* b2_broad_phase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_broad_phase.cpp; sourceTree = "<group>"; };
|
|
301
|
+
8C9EB1B42FB591A90015F5D4 /* b2_chain_shape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_chain_shape.cpp; sourceTree = "<group>"; };
|
|
302
|
+
8C9EB1B62FB591A90015F5D4 /* b2_circle_shape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_circle_shape.cpp; sourceTree = "<group>"; };
|
|
303
|
+
8C9EB1B82FB591A90015F5D4 /* b2_collide_circle.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_collide_circle.cpp; sourceTree = "<group>"; };
|
|
304
|
+
8C9EB1BA2FB591A90015F5D4 /* b2_collide_edge.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_collide_edge.cpp; sourceTree = "<group>"; };
|
|
305
|
+
8C9EB1BC2FB591A90015F5D4 /* b2_collide_polygon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_collide_polygon.cpp; sourceTree = "<group>"; };
|
|
306
|
+
8C9EB1BE2FB591A90015F5D4 /* b2_collision.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_collision.cpp; sourceTree = "<group>"; };
|
|
307
|
+
8C9EB1C02FB591A90015F5D4 /* b2_distance.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_distance.cpp; sourceTree = "<group>"; };
|
|
308
|
+
8C9EB1C22FB591A90015F5D4 /* b2_dynamic_tree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_dynamic_tree.cpp; sourceTree = "<group>"; };
|
|
309
|
+
8C9EB1C42FB591A90015F5D4 /* b2_edge_shape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_edge_shape.cpp; sourceTree = "<group>"; };
|
|
310
|
+
8C9EB1C62FB591A90015F5D4 /* b2_polygon_shape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_polygon_shape.cpp; sourceTree = "<group>"; };
|
|
311
|
+
8C9EB1C82FB591A90015F5D4 /* b2_time_of_impact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_time_of_impact.cpp; sourceTree = "<group>"; };
|
|
312
|
+
8C9EB1CB2FB591A90015F5D4 /* b2_block_allocator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_block_allocator.cpp; sourceTree = "<group>"; };
|
|
313
|
+
8C9EB1CD2FB591A90015F5D4 /* b2_draw.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_draw.cpp; sourceTree = "<group>"; };
|
|
314
|
+
8C9EB1CF2FB591A90015F5D4 /* b2_math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_math.cpp; sourceTree = "<group>"; };
|
|
315
|
+
8C9EB1D12FB591A90015F5D4 /* b2_settings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_settings.cpp; sourceTree = "<group>"; };
|
|
316
|
+
8C9EB1D32FB591A90015F5D4 /* b2_stack_allocator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_stack_allocator.cpp; sourceTree = "<group>"; };
|
|
317
|
+
8C9EB1D52FB591A90015F5D4 /* b2_timer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_timer.cpp; sourceTree = "<group>"; };
|
|
318
|
+
8C9EB1D82FB591A90015F5D4 /* b2_body.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_body.cpp; sourceTree = "<group>"; };
|
|
319
|
+
8C9EB1DB2FB591A90015F5D4 /* b2_chain_circle_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_chain_circle_contact.cpp; sourceTree = "<group>"; };
|
|
320
|
+
8C9EB1DE2FB591A90015F5D4 /* b2_chain_polygon_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_chain_polygon_contact.cpp; sourceTree = "<group>"; };
|
|
321
|
+
8C9EB1E12FB591A90015F5D4 /* b2_circle_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_circle_contact.cpp; sourceTree = "<group>"; };
|
|
322
|
+
8C9EB1E32FB591A90015F5D4 /* b2_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_contact.cpp; sourceTree = "<group>"; };
|
|
323
|
+
8C9EB1E52FB591A90015F5D4 /* b2_contact_manager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_contact_manager.cpp; sourceTree = "<group>"; };
|
|
324
|
+
8C9EB1E82FB591A90015F5D4 /* b2_contact_solver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_contact_solver.cpp; sourceTree = "<group>"; };
|
|
325
|
+
8C9EB1EA2FB591A90015F5D4 /* b2_distance_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_distance_joint.cpp; sourceTree = "<group>"; };
|
|
326
|
+
8C9EB1ED2FB591A90015F5D4 /* b2_edge_circle_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_edge_circle_contact.cpp; sourceTree = "<group>"; };
|
|
327
|
+
8C9EB1F02FB591A90015F5D4 /* b2_edge_polygon_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_edge_polygon_contact.cpp; sourceTree = "<group>"; };
|
|
328
|
+
8C9EB1F22FB591A90015F5D4 /* b2_fixture.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_fixture.cpp; sourceTree = "<group>"; };
|
|
329
|
+
8C9EB1F42FB591A90015F5D4 /* b2_friction_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_friction_joint.cpp; sourceTree = "<group>"; };
|
|
330
|
+
8C9EB1F62FB591A90015F5D4 /* b2_gear_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_gear_joint.cpp; sourceTree = "<group>"; };
|
|
331
|
+
8C9EB1F92FB591A90015F5D4 /* b2_island.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_island.cpp; sourceTree = "<group>"; };
|
|
332
|
+
8C9EB1FB2FB591A90015F5D4 /* b2_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_joint.cpp; sourceTree = "<group>"; };
|
|
333
|
+
8C9EB1FD2FB591A90015F5D4 /* b2_motor_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_motor_joint.cpp; sourceTree = "<group>"; };
|
|
334
|
+
8C9EB1FF2FB591A90015F5D4 /* b2_mouse_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_mouse_joint.cpp; sourceTree = "<group>"; };
|
|
335
|
+
8C9EB2022FB591A90015F5D4 /* b2_polygon_circle_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_polygon_circle_contact.cpp; sourceTree = "<group>"; };
|
|
336
|
+
8C9EB2052FB591A90015F5D4 /* b2_polygon_contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_polygon_contact.cpp; sourceTree = "<group>"; };
|
|
337
|
+
8C9EB2072FB591A90015F5D4 /* b2_prismatic_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_prismatic_joint.cpp; sourceTree = "<group>"; };
|
|
338
|
+
8C9EB2092FB591A90015F5D4 /* b2_pulley_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_pulley_joint.cpp; sourceTree = "<group>"; };
|
|
339
|
+
8C9EB20B2FB591A90015F5D4 /* b2_revolute_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_revolute_joint.cpp; sourceTree = "<group>"; };
|
|
340
|
+
8C9EB20D2FB591A90015F5D4 /* b2_weld_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_weld_joint.cpp; sourceTree = "<group>"; };
|
|
341
|
+
8C9EB20F2FB591A90015F5D4 /* b2_wheel_joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_wheel_joint.cpp; sourceTree = "<group>"; };
|
|
342
|
+
8C9EB2112FB591A90015F5D4 /* b2_world.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_world.cpp; sourceTree = "<group>"; };
|
|
343
|
+
8C9EB2132FB591A90015F5D4 /* b2_world_callbacks.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_world_callbacks.cpp; sourceTree = "<group>"; };
|
|
344
|
+
8C9EB2162FB591A90015F5D4 /* b2_rope.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = b2_rope.cpp; sourceTree = "<group>"; };
|
|
345
|
+
8C9EB2F52FB591A90015F5D4 /* RtMidi.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = RtMidi.cpp; sourceTree = "<group>"; };
|
|
346
|
+
8C9EB4AC2FB592500015F5D4 /* GameController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameController.framework; path = System/Library/Frameworks/GameController.framework; sourceTree = SDKROOT; };
|
|
347
|
+
8C9EB4AE2FB5928D0015F5D4 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
|
348
|
+
8C9EB4B02FB592950015F5D4 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
|
|
349
|
+
8C9EB4B22FB595B80015F5D4 /* CoreMIDI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMIDI.framework; path = System/Library/Frameworks/CoreMIDI.framework; sourceTree = SDKROOT; };
|
|
350
|
+
8C9EB4B42FB6D07F0015F5D4 /* debug.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = debug.h; sourceTree = "<group>"; };
|
|
351
|
+
8C9EB4B52FB6D07F0015F5D4 /* defs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = defs.h; sourceTree = "<group>"; };
|
|
352
|
+
8C9EB4B62FB6D07F0015F5D4 /* exception.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
|
|
353
|
+
8C9EB4B72FB6D07F0015F5D4 /* noncopyable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = noncopyable.h; sourceTree = "<group>"; };
|
|
354
|
+
8C9EB4B82FB6D07F0015F5D4 /* pimpl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pimpl.h; sourceTree = "<group>"; };
|
|
355
|
+
8C9EB4B92FB6D07F0015F5D4 /* ref.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ref.h; sourceTree = "<group>"; };
|
|
356
|
+
8C9EB4BA2FB6D07F0015F5D4 /* string.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = "<group>"; };
|
|
357
|
+
8C9EB4BB2FB6D07F0015F5D4 /* time.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
|
|
358
|
+
8C9EB4BC2FB6D07F0015F5D4 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
|
|
359
|
+
8C9EB4BD2FB6D07F0015F5D4 /* windows.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = windows.h; sourceTree = "<group>"; };
|
|
360
|
+
8C9EB4BF2FB6D07F0015F5D4 /* xot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xot.h; sourceTree = "<group>"; };
|
|
361
|
+
8C9EB4C12FB6D0910015F5D4 /* debug.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = debug.cpp; sourceTree = "<group>"; };
|
|
362
|
+
8C9EB4C32FB6D0910015F5D4 /* exception.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
|
|
363
|
+
8C9EB4C52FB6D0910015F5D4 /* string.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = string.cpp; sourceTree = "<group>"; };
|
|
364
|
+
8C9EB4C72FB6D0910015F5D4 /* time.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = time.cpp; sourceTree = "<group>"; };
|
|
365
|
+
8C9EB4C92FB6D0910015F5D4 /* util.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = util.cpp; sourceTree = "<group>"; };
|
|
309
366
|
/* End PBXFileReference section */
|
|
310
367
|
|
|
311
368
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -314,13 +371,21 @@
|
|
|
314
371
|
buildActionMask = 2147483647;
|
|
315
372
|
files = (
|
|
316
373
|
8332B7B6195AF6D0001B79BD /* MobileCoreServices.framework in Frameworks */,
|
|
374
|
+
8C9EAFC02FB590260015F5D4 /* CoreMedia.framework in Frameworks */,
|
|
375
|
+
8C9EB4AF2FB5928D0015F5D4 /* QuartzCore.framework in Frameworks */,
|
|
376
|
+
8C9EB4AD2FB592500015F5D4 /* GameController.framework in Frameworks */,
|
|
317
377
|
8332B7B4195AF5CD001B79BD /* ImageIO.framework in Frameworks */,
|
|
378
|
+
8C9EAFBC2FB58FF70015F5D4 /* AVFoundation.framework in Frameworks */,
|
|
318
379
|
8332B7B2195AF116001B79BD /* CoreText.framework in Frameworks */,
|
|
319
380
|
83688655194AA5B100923B8B /* OpenGLES.framework in Frameworks */,
|
|
320
381
|
8368864F194AA5B100923B8B /* CoreGraphics.framework in Frameworks */,
|
|
321
382
|
83688651194AA5B100923B8B /* UIKit.framework in Frameworks */,
|
|
383
|
+
8C9EB4B32FB595B80015F5D4 /* CoreMIDI.framework in Frameworks */,
|
|
384
|
+
8C9EAFBE2FB590060015F5D4 /* CoreImage.framework in Frameworks */,
|
|
322
385
|
83688653194AA5B100923B8B /* GLKit.framework in Frameworks */,
|
|
323
386
|
8368864D194AA5B100923B8B /* Foundation.framework in Frameworks */,
|
|
387
|
+
8C9EB4B12FB592950015F5D4 /* CoreMotion.framework in Frameworks */,
|
|
388
|
+
8C9EAFC22FB5902F0015F5D4 /* CoreVideo.framework in Frameworks */,
|
|
324
389
|
);
|
|
325
390
|
runOnlyForDeploymentPostprocessing = 0;
|
|
326
391
|
};
|
|
@@ -347,6 +412,14 @@
|
|
|
347
412
|
8368864B194AA5B100923B8B /* Frameworks */ = {
|
|
348
413
|
isa = PBXGroup;
|
|
349
414
|
children = (
|
|
415
|
+
8C9EB4B22FB595B80015F5D4 /* CoreMIDI.framework */,
|
|
416
|
+
8C9EB4B02FB592950015F5D4 /* CoreMotion.framework */,
|
|
417
|
+
8C9EB4AE2FB5928D0015F5D4 /* QuartzCore.framework */,
|
|
418
|
+
8C9EB4AC2FB592500015F5D4 /* GameController.framework */,
|
|
419
|
+
8C9EAFC12FB5902F0015F5D4 /* CoreVideo.framework */,
|
|
420
|
+
8C9EAFBF2FB590260015F5D4 /* CoreMedia.framework */,
|
|
421
|
+
8C9EAFBD2FB590060015F5D4 /* CoreImage.framework */,
|
|
422
|
+
8C9EAFBB2FB58FF70015F5D4 /* AVFoundation.framework */,
|
|
350
423
|
8332B7B5195AF6D0001B79BD /* MobileCoreServices.framework */,
|
|
351
424
|
8332B7B3195AF5CD001B79BD /* ImageIO.framework */,
|
|
352
425
|
8332B7B1195AF116001B79BD /* CoreText.framework */,
|
|
@@ -385,20 +458,8 @@
|
|
|
385
458
|
8368868C194AACCA00923B8B /* xot */ = {
|
|
386
459
|
isa = PBXGroup;
|
|
387
460
|
children = (
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
83688699194AAD1800923B8B /* defs.h */,
|
|
391
|
-
8368868E194AACF400923B8B /* exception.cpp */,
|
|
392
|
-
8368869A194AAD1800923B8B /* exception.h */,
|
|
393
|
-
8368869B194AAD1800923B8B /* pimpl.h */,
|
|
394
|
-
8368869C194AAD1800923B8B /* ref.h */,
|
|
395
|
-
8368868F194AACF400923B8B /* string.cpp */,
|
|
396
|
-
8368869D194AAD1800923B8B /* string.h */,
|
|
397
|
-
83688690194AACF400923B8B /* time.cpp */,
|
|
398
|
-
8368869E194AAD1800923B8B /* time.h */,
|
|
399
|
-
83688691194AACF400923B8B /* util.cpp */,
|
|
400
|
-
8368869F194AAD1800923B8B /* util.h */,
|
|
401
|
-
836886A0194AAD1800923B8B /* xot.h */,
|
|
461
|
+
8C9EB4C02FB6D07F0015F5D4 /* include */,
|
|
462
|
+
8C9EB4CB2FB6D0910015F5D4 /* src */,
|
|
402
463
|
);
|
|
403
464
|
name = xot;
|
|
404
465
|
sourceTree = "<group>";
|
|
@@ -406,44 +467,9 @@
|
|
|
406
467
|
836886A1194AB05900923B8B /* rays */ = {
|
|
407
468
|
isa = PBXGroup;
|
|
408
469
|
children = (
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
836886A5194AB07600923B8B /* bounds.h */,
|
|
413
|
-
836886D1194AB07600923B8B /* color.cpp */,
|
|
414
|
-
836886A6194AB07600923B8B /* color.h */,
|
|
415
|
-
836886D3194AB07600923B8B /* color_space.cpp */,
|
|
416
|
-
836886A7194AB07600923B8B /* color_space.h */,
|
|
417
|
-
836886A8194AB07600923B8B /* defs.h */,
|
|
418
|
-
836886D5194AB07600923B8B /* exception.cpp */,
|
|
419
|
-
836886A9194AB07600923B8B /* exception.h */,
|
|
420
|
-
836886AA194AB07600923B8B /* font.h */,
|
|
421
|
-
836886C8194AB07600923B8B /* font.mm */,
|
|
422
|
-
836886D7194AB07600923B8B /* frame_buffer.cpp */,
|
|
423
|
-
836886D8194AB07600923B8B /* frame_buffer.h */,
|
|
424
|
-
836886CA194AB07600923B8B /* helper.h */,
|
|
425
|
-
836886CB194AB07600923B8B /* helper.mm */,
|
|
426
|
-
836886DA194AB07700923B8B /* image.cpp */,
|
|
427
|
-
836886AB194AB07600923B8B /* image.h */,
|
|
428
|
-
836886DC194AB07700923B8B /* matrix.cpp */,
|
|
429
|
-
836886AC194AB07600923B8B /* matrix.h */,
|
|
430
|
-
836886DE194AB07700923B8B /* opengl.cpp */,
|
|
431
|
-
836886AD194AB07600923B8B /* opengl.h */,
|
|
432
|
-
836886CD194AB07600923B8B /* opengl.mm */,
|
|
433
|
-
836886E0194AB07700923B8B /* painter.cpp */,
|
|
434
|
-
836886AE194AB07600923B8B /* painter.h */,
|
|
435
|
-
836886E2194AB07700923B8B /* point.cpp */,
|
|
436
|
-
836886AF194AB07600923B8B /* point.h */,
|
|
437
|
-
834393FC196AE839001ECC57 /* program.cpp */,
|
|
438
|
-
836886E5194AB07700923B8B /* program.h */,
|
|
439
|
-
836886C1194AB07600923B8B /* rays.h */,
|
|
440
|
-
836886B0194AB07600923B8B /* rays.h */,
|
|
441
|
-
836886CF194AB07600923B8B /* rays.mm */,
|
|
442
|
-
836886E7194AB07700923B8B /* render_buffer.cpp */,
|
|
443
|
-
836886E8194AB07700923B8B /* render_buffer.h */,
|
|
444
|
-
836886BF194AB07600923B8B /* shader.h */,
|
|
445
|
-
836886EC194AB07700923B8B /* texture.cpp */,
|
|
446
|
-
836886C0194AB07600923B8B /* texture.h */,
|
|
470
|
+
8C9E9B672FB58BAB0015F5D4 /* include */,
|
|
471
|
+
8C9E9BB32FB58BBD0015F5D4 /* src */,
|
|
472
|
+
8C9EA70B2FB58E740015F5D4 /* vendor */,
|
|
447
473
|
);
|
|
448
474
|
name = rays;
|
|
449
475
|
sourceTree = "<group>";
|
|
@@ -451,215 +477,424 @@
|
|
|
451
477
|
8375D4D2196E839000BCFDDC /* reflex */ = {
|
|
452
478
|
isa = PBXGroup;
|
|
453
479
|
children = (
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
8375D4D6196E83D300BCFDDC /* application.h */,
|
|
458
|
-
8375D549196ED83900BCFDDC /* application.mm */,
|
|
459
|
-
8375D548196ED83900BCFDDC /* application_data.h */,
|
|
460
|
-
83DE178919A4907100A010E4 /* body.cpp */,
|
|
461
|
-
83DE178719A4907100A010E4 /* body.h */,
|
|
462
|
-
8375D4D7196E83D300BCFDDC /* defs.h */,
|
|
463
|
-
8375D4EE196E841C00BCFDDC /* event.cpp */,
|
|
464
|
-
8375D54E196ED83900BCFDDC /* event.h */,
|
|
465
|
-
8375D4D8196E83D300BCFDDC /* event.h */,
|
|
466
|
-
8375D54F196ED83900BCFDDC /* event.mm */,
|
|
467
|
-
8375D4F0196E841C00BCFDDC /* exception.cpp */,
|
|
468
|
-
8375D4D9196E83D300BCFDDC /* exception.h */,
|
|
469
|
-
83DE178A19A4907100A010E4 /* fixture.cpp */,
|
|
470
|
-
83DE178819A4907100A010E4 /* fixture.h */,
|
|
471
|
-
8375D4F2196E841C00BCFDDC /* image_view.cpp */,
|
|
472
|
-
8375D4DA196E83D300BCFDDC /* image_view.h */,
|
|
473
|
-
8375D54C196ED83900BCFDDC /* native_window.h */,
|
|
474
|
-
8375D54D196ED83900BCFDDC /* native_window.mm */,
|
|
475
|
-
8375D550196ED83900BCFDDC /* opengl_view.h */,
|
|
476
|
-
8375D551196ED83900BCFDDC /* opengl_view.mm */,
|
|
477
|
-
8375D4EC196E83D300BCFDDC /* reflex.h */,
|
|
478
|
-
8375D4DB196E83D300BCFDDC /* reflex.h */,
|
|
479
|
-
8375D552196ED83900BCFDDC /* reflex.mm */,
|
|
480
|
-
8375D50E196E841C00BCFDDC /* selector.cpp */,
|
|
481
|
-
8375D4E7196E83D300BCFDDC /* selector.h */,
|
|
482
|
-
8375D510196E841D00BCFDDC /* style.cpp */,
|
|
483
|
-
8375D4E8196E83D300BCFDDC /* style.h */,
|
|
484
|
-
8375D512196E841D00BCFDDC /* style_length.cpp */,
|
|
485
|
-
8375D4E9196E83D300BCFDDC /* style_length.h */,
|
|
486
|
-
8375D514196E841D00BCFDDC /* view.cpp */,
|
|
487
|
-
8375D4EA196E83D300BCFDDC /* view.h */,
|
|
488
|
-
8375D51E196E841D00BCFDDC /* window.cpp */,
|
|
489
|
-
8375D4EB196E83D300BCFDDC /* window.h */,
|
|
490
|
-
8375D554196ED83900BCFDDC /* window.mm */,
|
|
491
|
-
8375D553196ED83900BCFDDC /* window_data.h */,
|
|
492
|
-
83DE178B19A4907100A010E4 /* world.cpp */,
|
|
493
|
-
83DE178C19A4907100A010E4 /* world.h */,
|
|
480
|
+
8C9EAFEB2FB5906B0015F5D4 /* include */,
|
|
481
|
+
8C9EB0C52FB590FF0015F5D4 /* src */,
|
|
482
|
+
8C9EB32B2FB591A90015F5D4 /* vendor */,
|
|
494
483
|
);
|
|
495
484
|
name = reflex;
|
|
496
485
|
sourceTree = "<group>";
|
|
497
486
|
};
|
|
498
|
-
|
|
487
|
+
8C9E9B652FB58BAB0015F5D4 /* rays */ = {
|
|
499
488
|
isa = PBXGroup;
|
|
500
489
|
children = (
|
|
501
|
-
|
|
490
|
+
8C9E9B512FB58BAB0015F5D4 /* bitmap.h */,
|
|
491
|
+
8C9E9B522FB58BAB0015F5D4 /* bounds.h */,
|
|
492
|
+
8C9E9B532FB58BAB0015F5D4 /* camera.h */,
|
|
493
|
+
8C9E9B542FB58BAB0015F5D4 /* color.h */,
|
|
494
|
+
8C9E9B552FB58BAB0015F5D4 /* color_space.h */,
|
|
495
|
+
8C9E9B562FB58BAB0015F5D4 /* coord.h */,
|
|
496
|
+
8C9E9B572FB58BAB0015F5D4 /* debug.h */,
|
|
497
|
+
8C9E9B582FB58BAB0015F5D4 /* defs.h */,
|
|
498
|
+
8C9E9B592FB58BAB0015F5D4 /* exception.h */,
|
|
499
|
+
8C9E9B5A2FB58BAB0015F5D4 /* font.h */,
|
|
500
|
+
8C9E9B5B2FB58BAB0015F5D4 /* image.h */,
|
|
501
|
+
8C9E9B5C2FB58BAB0015F5D4 /* matrix.h */,
|
|
502
|
+
8C9E9B5D2FB58BAB0015F5D4 /* painter.h */,
|
|
503
|
+
8C9E9B5E2FB58BAB0015F5D4 /* point.h */,
|
|
504
|
+
8C9E9B5F2FB58BAB0015F5D4 /* polygon.h */,
|
|
505
|
+
8C9E9B602FB58BAB0015F5D4 /* polyline.h */,
|
|
506
|
+
8C9E9B612FB58BAB0015F5D4 /* rays.h */,
|
|
507
|
+
8C9E9B622FB58BAB0015F5D4 /* ruby.h */,
|
|
508
|
+
8C9E9B632FB58BAB0015F5D4 /* shader.h */,
|
|
509
|
+
8C9E9B642FB58BAB0015F5D4 /* util.h */,
|
|
502
510
|
);
|
|
503
|
-
|
|
511
|
+
path = rays;
|
|
504
512
|
sourceTree = "<group>";
|
|
505
513
|
};
|
|
506
|
-
|
|
514
|
+
8C9E9B672FB58BAB0015F5D4 /* include */ = {
|
|
507
515
|
isa = PBXGroup;
|
|
508
516
|
children = (
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
83DE170E19A48FF000A010E4 /* Common */,
|
|
512
|
-
83DE171C19A48FF000A010E4 /* Dynamics */,
|
|
513
|
-
83DE175619A48FF000A010E4 /* Rope */,
|
|
517
|
+
8C9E9B652FB58BAB0015F5D4 /* rays */,
|
|
518
|
+
8C9E9B662FB58BAB0015F5D4 /* rays.h */,
|
|
514
519
|
);
|
|
515
|
-
name =
|
|
516
|
-
path = ../../../../
|
|
520
|
+
name = include;
|
|
521
|
+
path = ../../../../rays/include;
|
|
522
|
+
sourceTree = SOURCE_ROOT;
|
|
523
|
+
};
|
|
524
|
+
8C9E9B6D2FB58BBD0015F5D4 /* ios */ = {
|
|
525
|
+
isa = PBXGroup;
|
|
526
|
+
children = (
|
|
527
|
+
8C9E9B682FB58BBD0015F5D4 /* bitmap.h */,
|
|
528
|
+
8C9E9B692FB58BBD0015F5D4 /* bitmap.mm */,
|
|
529
|
+
8C9E9B6A2FB58BBD0015F5D4 /* camera.mm */,
|
|
530
|
+
8C9E9B6B2FB58BBD0015F5D4 /* font.mm */,
|
|
531
|
+
8C9E9B6C2FB58BBD0015F5D4 /* rays.mm */,
|
|
532
|
+
);
|
|
533
|
+
path = ios;
|
|
517
534
|
sourceTree = "<group>";
|
|
518
535
|
};
|
|
519
|
-
|
|
520
|
-
isa = PBXGroup;
|
|
521
|
-
children = (
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
83DE16FA19A48FF000A010E4 /* b2CollideEdge.cpp */,
|
|
526
|
-
83DE16FB19A48FF000A010E4 /* b2CollidePolygon.cpp */,
|
|
527
|
-
83DE16FC19A48FF000A010E4 /* b2Collision.cpp */,
|
|
528
|
-
83DE16FD19A48FF000A010E4 /* b2Collision.h */,
|
|
529
|
-
83DE16FE19A48FF000A010E4 /* b2Distance.cpp */,
|
|
530
|
-
83DE16FF19A48FF000A010E4 /* b2Distance.h */,
|
|
531
|
-
83DE170019A48FF000A010E4 /* b2DynamicTree.cpp */,
|
|
532
|
-
83DE170119A48FF000A010E4 /* b2DynamicTree.h */,
|
|
533
|
-
83DE170219A48FF000A010E4 /* b2TimeOfImpact.cpp */,
|
|
534
|
-
83DE170319A48FF000A010E4 /* b2TimeOfImpact.h */,
|
|
535
|
-
83DE170419A48FF000A010E4 /* Shapes */,
|
|
536
|
-
);
|
|
537
|
-
path = Collision;
|
|
536
|
+
8C9E9B6F2FB58BBD0015F5D4 /* ios */ = {
|
|
537
|
+
isa = PBXGroup;
|
|
538
|
+
children = (
|
|
539
|
+
8C9E9B6E2FB58BBD0015F5D4 /* opengl.mm */,
|
|
540
|
+
);
|
|
541
|
+
path = ios;
|
|
538
542
|
sourceTree = "<group>";
|
|
539
543
|
};
|
|
540
|
-
|
|
544
|
+
8C9E9B882FB58BBD0015F5D4 /* opengl */ = {
|
|
541
545
|
isa = PBXGroup;
|
|
542
546
|
children = (
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
547
|
+
8C9E9B6F2FB58BBD0015F5D4 /* ios */,
|
|
548
|
+
8C9E9B762FB58BBD0015F5D4 /* bitmap.cpp */,
|
|
549
|
+
8C9E9B772FB58BBD0015F5D4 /* color_space.h */,
|
|
550
|
+
8C9E9B782FB58BBD0015F5D4 /* color_space.cpp */,
|
|
551
|
+
8C9E9B792FB58BBD0015F5D4 /* frame_buffer.h */,
|
|
552
|
+
8C9E9B7A2FB58BBD0015F5D4 /* frame_buffer.cpp */,
|
|
553
|
+
8C9E9B7B2FB58BBD0015F5D4 /* opengl.h */,
|
|
554
|
+
8C9E9B7C2FB58BBD0015F5D4 /* opengl.cpp */,
|
|
555
|
+
8C9E9B7D2FB58BBD0015F5D4 /* painter.cpp */,
|
|
556
|
+
8C9E9B7E2FB58BBD0015F5D4 /* render_buffer.h */,
|
|
557
|
+
8C9E9B7F2FB58BBD0015F5D4 /* render_buffer.cpp */,
|
|
558
|
+
8C9E9B802FB58BBD0015F5D4 /* shader.h */,
|
|
559
|
+
8C9E9B812FB58BBD0015F5D4 /* shader.cpp */,
|
|
560
|
+
8C9E9B822FB58BBD0015F5D4 /* shader_program.h */,
|
|
561
|
+
8C9E9B832FB58BBD0015F5D4 /* shader_program.cpp */,
|
|
562
|
+
8C9E9B842FB58BBD0015F5D4 /* shader_source.h */,
|
|
563
|
+
8C9E9B852FB58BBD0015F5D4 /* shader_source.cpp */,
|
|
564
|
+
8C9E9B862FB58BBD0015F5D4 /* texture.h */,
|
|
565
|
+
8C9E9B872FB58BBD0015F5D4 /* texture.cpp */,
|
|
552
566
|
);
|
|
553
|
-
path =
|
|
567
|
+
path = opengl;
|
|
554
568
|
sourceTree = "<group>";
|
|
555
569
|
};
|
|
556
|
-
|
|
570
|
+
8C9E9BB32FB58BBD0015F5D4 /* src */ = {
|
|
571
|
+
isa = PBXGroup;
|
|
572
|
+
children = (
|
|
573
|
+
8C9E9B6D2FB58BBD0015F5D4 /* ios */,
|
|
574
|
+
8C9E9B882FB58BBD0015F5D4 /* opengl */,
|
|
575
|
+
8C9E9B9B2FB58BBD0015F5D4 /* bitmap.h */,
|
|
576
|
+
8C9E9B9C2FB58BBD0015F5D4 /* bounds.cpp */,
|
|
577
|
+
8C9E9B9D2FB58BBD0015F5D4 /* color.cpp */,
|
|
578
|
+
8C9E9B9E2FB58BBD0015F5D4 /* color_space.cpp */,
|
|
579
|
+
8C9E9B9F2FB58BBD0015F5D4 /* coord.h */,
|
|
580
|
+
8C9E9BA02FB58BBD0015F5D4 /* coord.cpp */,
|
|
581
|
+
8C9E9BA12FB58BBD0015F5D4 /* exception.cpp */,
|
|
582
|
+
8C9E9BA22FB58BBD0015F5D4 /* font.h */,
|
|
583
|
+
8C9E9BA32FB58BBD0015F5D4 /* font.cpp */,
|
|
584
|
+
8C9E9BA42FB58BBD0015F5D4 /* glm.h */,
|
|
585
|
+
8C9E9BA52FB58BBD0015F5D4 /* image.h */,
|
|
586
|
+
8C9E9BA62FB58BBD0015F5D4 /* image.cpp */,
|
|
587
|
+
8C9E9BA72FB58BBD0015F5D4 /* matrix.h */,
|
|
588
|
+
8C9E9BA82FB58BBD0015F5D4 /* matrix.cpp */,
|
|
589
|
+
8C9E9BA92FB58BBD0015F5D4 /* painter.h */,
|
|
590
|
+
8C9E9BAA2FB58BBD0015F5D4 /* painter.cpp */,
|
|
591
|
+
8C9E9BAB2FB58BBD0015F5D4 /* point.cpp */,
|
|
592
|
+
8C9E9BAC2FB58BBD0015F5D4 /* polygon.h */,
|
|
593
|
+
8C9E9BAD2FB58BBD0015F5D4 /* polygon.cpp */,
|
|
594
|
+
8C9E9BAE2FB58BBD0015F5D4 /* polyline.h */,
|
|
595
|
+
8C9E9BAF2FB58BBD0015F5D4 /* polyline.cpp */,
|
|
596
|
+
8C9E9BB02FB58BBD0015F5D4 /* renderer.h */,
|
|
597
|
+
8C9E9BB12FB58BBD0015F5D4 /* texture.h */,
|
|
598
|
+
8C9E9BB22FB58BBD0015F5D4 /* util.cpp */,
|
|
599
|
+
);
|
|
600
|
+
name = src;
|
|
601
|
+
path = ../../../../rays/src;
|
|
602
|
+
sourceTree = SOURCE_ROOT;
|
|
603
|
+
};
|
|
604
|
+
8C9E9C642FB58E740015F5D4 /* cpp */ = {
|
|
557
605
|
isa = PBXGroup;
|
|
558
606
|
children = (
|
|
559
|
-
|
|
560
|
-
83DE171019A48FF000A010E4 /* b2BlockAllocator.h */,
|
|
561
|
-
83DE171119A48FF000A010E4 /* b2Draw.cpp */,
|
|
562
|
-
83DE171219A48FF000A010E4 /* b2Draw.h */,
|
|
563
|
-
83DE171319A48FF000A010E4 /* b2GrowableStack.h */,
|
|
564
|
-
83DE171419A48FF000A010E4 /* b2Math.cpp */,
|
|
565
|
-
83DE171519A48FF000A010E4 /* b2Math.h */,
|
|
566
|
-
83DE171619A48FF000A010E4 /* b2Settings.cpp */,
|
|
567
|
-
83DE171719A48FF000A010E4 /* b2Settings.h */,
|
|
568
|
-
83DE171819A48FF000A010E4 /* b2StackAllocator.cpp */,
|
|
569
|
-
83DE171919A48FF000A010E4 /* b2StackAllocator.h */,
|
|
570
|
-
83DE171A19A48FF000A010E4 /* b2Timer.cpp */,
|
|
571
|
-
83DE171B19A48FF000A010E4 /* b2Timer.h */,
|
|
607
|
+
8C9E9C602FB58E740015F5D4 /* clipper.cpp */,
|
|
572
608
|
);
|
|
573
|
-
path =
|
|
609
|
+
path = cpp;
|
|
574
610
|
sourceTree = "<group>";
|
|
575
611
|
};
|
|
576
|
-
|
|
577
|
-
isa = PBXGroup;
|
|
578
|
-
children = (
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
612
|
+
8C9E9D6C2FB58E740015F5D4 /* clipper */ = {
|
|
613
|
+
isa = PBXGroup;
|
|
614
|
+
children = (
|
|
615
|
+
8C9E9C642FB58E740015F5D4 /* cpp */,
|
|
616
|
+
);
|
|
617
|
+
path = clipper;
|
|
618
|
+
sourceTree = "<group>";
|
|
619
|
+
};
|
|
620
|
+
8C9EA70A2FB58E740015F5D4 /* splines-lib */ = {
|
|
621
|
+
isa = PBXGroup;
|
|
622
|
+
children = (
|
|
623
|
+
8C9EA7072FB58E740015F5D4 /* Splines.cpp */,
|
|
624
|
+
);
|
|
625
|
+
path = "splines-lib";
|
|
626
|
+
sourceTree = "<group>";
|
|
627
|
+
};
|
|
628
|
+
8C9EA70B2FB58E740015F5D4 /* vendor */ = {
|
|
629
|
+
isa = PBXGroup;
|
|
630
|
+
children = (
|
|
631
|
+
8C9E9D6C2FB58E740015F5D4 /* clipper */,
|
|
632
|
+
8C9EA70A2FB58E740015F5D4 /* splines-lib */,
|
|
633
|
+
);
|
|
634
|
+
name = vendor;
|
|
635
|
+
path = ../../../../rays/vendor;
|
|
636
|
+
sourceTree = SOURCE_ROOT;
|
|
637
|
+
};
|
|
638
|
+
8C9EAFE92FB5906B0015F5D4 /* reflex */ = {
|
|
639
|
+
isa = PBXGroup;
|
|
640
|
+
children = (
|
|
641
|
+
8C9EAFD52FB5906B0015F5D4 /* application.h */,
|
|
642
|
+
8C9EAFD62FB5906B0015F5D4 /* debug.h */,
|
|
643
|
+
8C9EAFD72FB5906B0015F5D4 /* defs.h */,
|
|
644
|
+
8C9EAFD82FB5906B0015F5D4 /* device.h */,
|
|
645
|
+
8C9EAFD92FB5906B0015F5D4 /* event.h */,
|
|
646
|
+
8C9EAFDA2FB5906B0015F5D4 /* exception.h */,
|
|
647
|
+
8C9EAFDB2FB5906B0015F5D4 /* filter.h */,
|
|
648
|
+
8C9EAFDC2FB5906B0015F5D4 /* gamepad.h */,
|
|
649
|
+
8C9EAFDD2FB5906B0015F5D4 /* image_view.h */,
|
|
650
|
+
8C9EAFDE2FB5906B0015F5D4 /* midi.h */,
|
|
651
|
+
8C9EAFDF2FB5906B0015F5D4 /* pointer.h */,
|
|
652
|
+
8C9EAFE02FB5906B0015F5D4 /* reflex.h */,
|
|
653
|
+
8C9EAFE12FB5906B0015F5D4 /* ruby.h */,
|
|
654
|
+
8C9EAFE22FB5906B0015F5D4 /* screen.h */,
|
|
655
|
+
8C9EAFE32FB5906B0015F5D4 /* selector.h */,
|
|
656
|
+
8C9EAFE42FB5906B0015F5D4 /* shape.h */,
|
|
657
|
+
8C9EAFE52FB5906B0015F5D4 /* style.h */,
|
|
658
|
+
8C9EAFE62FB5906B0015F5D4 /* timer.h */,
|
|
659
|
+
8C9EAFE72FB5906B0015F5D4 /* view.h */,
|
|
660
|
+
8C9EAFE82FB5906B0015F5D4 /* window.h */,
|
|
661
|
+
);
|
|
662
|
+
path = reflex;
|
|
596
663
|
sourceTree = "<group>";
|
|
597
664
|
};
|
|
598
|
-
|
|
599
|
-
isa = PBXGroup;
|
|
600
|
-
children = (
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
665
|
+
8C9EAFEB2FB5906B0015F5D4 /* include */ = {
|
|
666
|
+
isa = PBXGroup;
|
|
667
|
+
children = (
|
|
668
|
+
8C9EAFE92FB5906B0015F5D4 /* reflex */,
|
|
669
|
+
8C9EAFEA2FB5906B0015F5D4 /* reflex.h */,
|
|
670
|
+
);
|
|
671
|
+
name = include;
|
|
672
|
+
path = ../../../../reflex/include;
|
|
673
|
+
sourceTree = SOURCE_ROOT;
|
|
674
|
+
};
|
|
675
|
+
8C9EB0732FB590FF0015F5D4 /* ios */ = {
|
|
676
|
+
isa = PBXGroup;
|
|
677
|
+
children = (
|
|
678
|
+
8C9EB0642FB590FF0015F5D4 /* app_delegate.h */,
|
|
679
|
+
8C9EB0652FB590FF0015F5D4 /* app_delegate.mm */,
|
|
680
|
+
8C9EB0662FB590FF0015F5D4 /* application.h */,
|
|
681
|
+
8C9EB0672FB590FF0015F5D4 /* application.mm */,
|
|
682
|
+
8C9EB0682FB590FF0015F5D4 /* device.mm */,
|
|
683
|
+
8C9EB0692FB590FF0015F5D4 /* event.h */,
|
|
684
|
+
8C9EB06A2FB590FF0015F5D4 /* event.mm */,
|
|
685
|
+
8C9EB06B2FB590FF0015F5D4 /* gamepad.mm */,
|
|
686
|
+
8C9EB06C2FB590FF0015F5D4 /* reflex.mm */,
|
|
687
|
+
8C9EB06D2FB590FF0015F5D4 /* screen.h */,
|
|
688
|
+
8C9EB06E2FB590FF0015F5D4 /* screen.mm */,
|
|
689
|
+
8C9EB06F2FB590FF0015F5D4 /* view_controller.h */,
|
|
690
|
+
8C9EB0702FB590FF0015F5D4 /* view_controller.mm */,
|
|
691
|
+
8C9EB0712FB590FF0015F5D4 /* window.h */,
|
|
692
|
+
8C9EB0722FB590FF0015F5D4 /* window.mm */,
|
|
693
|
+
);
|
|
694
|
+
path = ios;
|
|
621
695
|
sourceTree = "<group>";
|
|
622
696
|
};
|
|
623
|
-
|
|
624
|
-
isa = PBXGroup;
|
|
625
|
-
children = (
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
697
|
+
8C9EB0C52FB590FF0015F5D4 /* src */ = {
|
|
698
|
+
isa = PBXGroup;
|
|
699
|
+
children = (
|
|
700
|
+
8C9EB0732FB590FF0015F5D4 /* ios */,
|
|
701
|
+
8C9EB0A32FB590FF0015F5D4 /* application.h */,
|
|
702
|
+
8C9EB0A42FB590FF0015F5D4 /* application.cpp */,
|
|
703
|
+
8C9EB0A52FB590FF0015F5D4 /* body.h */,
|
|
704
|
+
8C9EB0A62FB590FF0015F5D4 /* body.cpp */,
|
|
705
|
+
8C9EB0A72FB590FF0015F5D4 /* device.cpp */,
|
|
706
|
+
8C9EB0A82FB590FF0015F5D4 /* event.h */,
|
|
707
|
+
8C9EB0A92FB590FF0015F5D4 /* event.cpp */,
|
|
708
|
+
8C9EB0AA2FB590FF0015F5D4 /* exception.cpp */,
|
|
709
|
+
8C9EB0AB2FB590FF0015F5D4 /* filter.cpp */,
|
|
710
|
+
8C9EB0AC2FB590FF0015F5D4 /* fixture.h */,
|
|
711
|
+
8C9EB0AD2FB590FF0015F5D4 /* fixture.cpp */,
|
|
712
|
+
8C9EB0AE2FB590FF0015F5D4 /* gamepad.h */,
|
|
713
|
+
8C9EB0AF2FB590FF0015F5D4 /* gamepad.cpp */,
|
|
714
|
+
8C9EB0B02FB590FF0015F5D4 /* image_view.cpp */,
|
|
715
|
+
8C9EB0B12FB590FF0015F5D4 /* midi.h */,
|
|
716
|
+
8C9EB0B22FB590FF0015F5D4 /* midi.cpp */,
|
|
717
|
+
8C9EB0B32FB590FF0015F5D4 /* pointer.h */,
|
|
718
|
+
8C9EB0B42FB590FF0015F5D4 /* pointer.cpp */,
|
|
719
|
+
8C9EB0B52FB590FF0015F5D4 /* queue.h */,
|
|
720
|
+
8C9EB0B62FB590FF0015F5D4 /* reflex.cpp */,
|
|
721
|
+
8C9EB0B72FB590FF0015F5D4 /* selector.h */,
|
|
722
|
+
8C9EB0B82FB590FF0015F5D4 /* selector.cpp */,
|
|
723
|
+
8C9EB0B92FB590FF0015F5D4 /* shape.h */,
|
|
724
|
+
8C9EB0BA2FB590FF0015F5D4 /* shape.cpp */,
|
|
725
|
+
8C9EB0BB2FB590FF0015F5D4 /* style.h */,
|
|
726
|
+
8C9EB0BC2FB590FF0015F5D4 /* style.cpp */,
|
|
727
|
+
8C9EB0BD2FB590FF0015F5D4 /* timer.h */,
|
|
728
|
+
8C9EB0BE2FB590FF0015F5D4 /* timer.cpp */,
|
|
729
|
+
8C9EB0BF2FB590FF0015F5D4 /* view.h */,
|
|
730
|
+
8C9EB0C02FB590FF0015F5D4 /* view.cpp */,
|
|
731
|
+
8C9EB0C12FB590FF0015F5D4 /* window.h */,
|
|
732
|
+
8C9EB0C22FB590FF0015F5D4 /* window.cpp */,
|
|
733
|
+
8C9EB0C32FB590FF0015F5D4 /* world.h */,
|
|
734
|
+
8C9EB0C42FB590FF0015F5D4 /* world.cpp */,
|
|
735
|
+
);
|
|
736
|
+
name = src;
|
|
737
|
+
path = ../../../../reflex/src;
|
|
738
|
+
sourceTree = SOURCE_ROOT;
|
|
739
|
+
};
|
|
740
|
+
8C9EB1CA2FB591A90015F5D4 /* collision */ = {
|
|
741
|
+
isa = PBXGroup;
|
|
742
|
+
children = (
|
|
743
|
+
8C9EB1B22FB591A90015F5D4 /* b2_broad_phase.cpp */,
|
|
744
|
+
8C9EB1B42FB591A90015F5D4 /* b2_chain_shape.cpp */,
|
|
745
|
+
8C9EB1B62FB591A90015F5D4 /* b2_circle_shape.cpp */,
|
|
746
|
+
8C9EB1B82FB591A90015F5D4 /* b2_collide_circle.cpp */,
|
|
747
|
+
8C9EB1BA2FB591A90015F5D4 /* b2_collide_edge.cpp */,
|
|
748
|
+
8C9EB1BC2FB591A90015F5D4 /* b2_collide_polygon.cpp */,
|
|
749
|
+
8C9EB1BE2FB591A90015F5D4 /* b2_collision.cpp */,
|
|
750
|
+
8C9EB1C02FB591A90015F5D4 /* b2_distance.cpp */,
|
|
751
|
+
8C9EB1C22FB591A90015F5D4 /* b2_dynamic_tree.cpp */,
|
|
752
|
+
8C9EB1C42FB591A90015F5D4 /* b2_edge_shape.cpp */,
|
|
753
|
+
8C9EB1C62FB591A90015F5D4 /* b2_polygon_shape.cpp */,
|
|
754
|
+
8C9EB1C82FB591A90015F5D4 /* b2_time_of_impact.cpp */,
|
|
755
|
+
);
|
|
756
|
+
path = collision;
|
|
652
757
|
sourceTree = "<group>";
|
|
653
758
|
};
|
|
654
|
-
|
|
759
|
+
8C9EB1D72FB591A90015F5D4 /* common */ = {
|
|
655
760
|
isa = PBXGroup;
|
|
656
761
|
children = (
|
|
657
|
-
|
|
658
|
-
|
|
762
|
+
8C9EB1CB2FB591A90015F5D4 /* b2_block_allocator.cpp */,
|
|
763
|
+
8C9EB1CD2FB591A90015F5D4 /* b2_draw.cpp */,
|
|
764
|
+
8C9EB1CF2FB591A90015F5D4 /* b2_math.cpp */,
|
|
765
|
+
8C9EB1D12FB591A90015F5D4 /* b2_settings.cpp */,
|
|
766
|
+
8C9EB1D32FB591A90015F5D4 /* b2_stack_allocator.cpp */,
|
|
767
|
+
8C9EB1D52FB591A90015F5D4 /* b2_timer.cpp */,
|
|
659
768
|
);
|
|
660
|
-
path =
|
|
769
|
+
path = common;
|
|
661
770
|
sourceTree = "<group>";
|
|
662
771
|
};
|
|
772
|
+
8C9EB2152FB591A90015F5D4 /* dynamics */ = {
|
|
773
|
+
isa = PBXGroup;
|
|
774
|
+
children = (
|
|
775
|
+
8C9EB1D82FB591A90015F5D4 /* b2_body.cpp */,
|
|
776
|
+
8C9EB1DB2FB591A90015F5D4 /* b2_chain_circle_contact.cpp */,
|
|
777
|
+
8C9EB1DE2FB591A90015F5D4 /* b2_chain_polygon_contact.cpp */,
|
|
778
|
+
8C9EB1E12FB591A90015F5D4 /* b2_circle_contact.cpp */,
|
|
779
|
+
8C9EB1E32FB591A90015F5D4 /* b2_contact.cpp */,
|
|
780
|
+
8C9EB1E52FB591A90015F5D4 /* b2_contact_manager.cpp */,
|
|
781
|
+
8C9EB1E82FB591A90015F5D4 /* b2_contact_solver.cpp */,
|
|
782
|
+
8C9EB1EA2FB591A90015F5D4 /* b2_distance_joint.cpp */,
|
|
783
|
+
8C9EB1ED2FB591A90015F5D4 /* b2_edge_circle_contact.cpp */,
|
|
784
|
+
8C9EB1F02FB591A90015F5D4 /* b2_edge_polygon_contact.cpp */,
|
|
785
|
+
8C9EB1F22FB591A90015F5D4 /* b2_fixture.cpp */,
|
|
786
|
+
8C9EB1F42FB591A90015F5D4 /* b2_friction_joint.cpp */,
|
|
787
|
+
8C9EB1F62FB591A90015F5D4 /* b2_gear_joint.cpp */,
|
|
788
|
+
8C9EB1F92FB591A90015F5D4 /* b2_island.cpp */,
|
|
789
|
+
8C9EB1FB2FB591A90015F5D4 /* b2_joint.cpp */,
|
|
790
|
+
8C9EB1FD2FB591A90015F5D4 /* b2_motor_joint.cpp */,
|
|
791
|
+
8C9EB1FF2FB591A90015F5D4 /* b2_mouse_joint.cpp */,
|
|
792
|
+
8C9EB2022FB591A90015F5D4 /* b2_polygon_circle_contact.cpp */,
|
|
793
|
+
8C9EB2052FB591A90015F5D4 /* b2_polygon_contact.cpp */,
|
|
794
|
+
8C9EB2072FB591A90015F5D4 /* b2_prismatic_joint.cpp */,
|
|
795
|
+
8C9EB2092FB591A90015F5D4 /* b2_pulley_joint.cpp */,
|
|
796
|
+
8C9EB20B2FB591A90015F5D4 /* b2_revolute_joint.cpp */,
|
|
797
|
+
8C9EB20D2FB591A90015F5D4 /* b2_weld_joint.cpp */,
|
|
798
|
+
8C9EB20F2FB591A90015F5D4 /* b2_wheel_joint.cpp */,
|
|
799
|
+
8C9EB2112FB591A90015F5D4 /* b2_world.cpp */,
|
|
800
|
+
8C9EB2132FB591A90015F5D4 /* b2_world_callbacks.cpp */,
|
|
801
|
+
);
|
|
802
|
+
path = dynamics;
|
|
803
|
+
sourceTree = "<group>";
|
|
804
|
+
};
|
|
805
|
+
8C9EB2182FB591A90015F5D4 /* rope */ = {
|
|
806
|
+
isa = PBXGroup;
|
|
807
|
+
children = (
|
|
808
|
+
8C9EB2162FB591A90015F5D4 /* b2_rope.cpp */,
|
|
809
|
+
);
|
|
810
|
+
path = rope;
|
|
811
|
+
sourceTree = "<group>";
|
|
812
|
+
};
|
|
813
|
+
8C9EB21A2FB591A90015F5D4 /* src */ = {
|
|
814
|
+
isa = PBXGroup;
|
|
815
|
+
children = (
|
|
816
|
+
8C9EB1CA2FB591A90015F5D4 /* collision */,
|
|
817
|
+
8C9EB1D72FB591A90015F5D4 /* common */,
|
|
818
|
+
8C9EB2152FB591A90015F5D4 /* dynamics */,
|
|
819
|
+
8C9EB2182FB591A90015F5D4 /* rope */,
|
|
820
|
+
);
|
|
821
|
+
path = src;
|
|
822
|
+
sourceTree = "<group>";
|
|
823
|
+
};
|
|
824
|
+
8C9EB2782FB591A90015F5D4 /* box2d */ = {
|
|
825
|
+
isa = PBXGroup;
|
|
826
|
+
children = (
|
|
827
|
+
8C9EB21A2FB591A90015F5D4 /* src */,
|
|
828
|
+
);
|
|
829
|
+
path = box2d;
|
|
830
|
+
sourceTree = "<group>";
|
|
831
|
+
};
|
|
832
|
+
8C9EB2F72FB591A90015F5D4 /* rtmidi */ = {
|
|
833
|
+
isa = PBXGroup;
|
|
834
|
+
children = (
|
|
835
|
+
8C9EB2F52FB591A90015F5D4 /* RtMidi.cpp */,
|
|
836
|
+
);
|
|
837
|
+
path = rtmidi;
|
|
838
|
+
sourceTree = "<group>";
|
|
839
|
+
};
|
|
840
|
+
8C9EB32A2FB591A90015F5D4 /* rtmidi */ = {
|
|
841
|
+
isa = PBXGroup;
|
|
842
|
+
children = (
|
|
843
|
+
8C9EB2F72FB591A90015F5D4 /* rtmidi */,
|
|
844
|
+
);
|
|
845
|
+
path = rtmidi;
|
|
846
|
+
sourceTree = "<group>";
|
|
847
|
+
};
|
|
848
|
+
8C9EB32B2FB591A90015F5D4 /* vendor */ = {
|
|
849
|
+
isa = PBXGroup;
|
|
850
|
+
children = (
|
|
851
|
+
8C9EB2782FB591A90015F5D4 /* box2d */,
|
|
852
|
+
8C9EB32A2FB591A90015F5D4 /* rtmidi */,
|
|
853
|
+
);
|
|
854
|
+
name = vendor;
|
|
855
|
+
path = ../../../../reflex/vendor;
|
|
856
|
+
sourceTree = SOURCE_ROOT;
|
|
857
|
+
};
|
|
858
|
+
8C9EB4BE2FB6D07F0015F5D4 /* xot */ = {
|
|
859
|
+
isa = PBXGroup;
|
|
860
|
+
children = (
|
|
861
|
+
8C9EB4B42FB6D07F0015F5D4 /* debug.h */,
|
|
862
|
+
8C9EB4B52FB6D07F0015F5D4 /* defs.h */,
|
|
863
|
+
8C9EB4B62FB6D07F0015F5D4 /* exception.h */,
|
|
864
|
+
8C9EB4B72FB6D07F0015F5D4 /* noncopyable.h */,
|
|
865
|
+
8C9EB4B82FB6D07F0015F5D4 /* pimpl.h */,
|
|
866
|
+
8C9EB4B92FB6D07F0015F5D4 /* ref.h */,
|
|
867
|
+
8C9EB4BA2FB6D07F0015F5D4 /* string.h */,
|
|
868
|
+
8C9EB4BB2FB6D07F0015F5D4 /* time.h */,
|
|
869
|
+
8C9EB4BC2FB6D07F0015F5D4 /* util.h */,
|
|
870
|
+
8C9EB4BD2FB6D07F0015F5D4 /* windows.h */,
|
|
871
|
+
);
|
|
872
|
+
path = xot;
|
|
873
|
+
sourceTree = "<group>";
|
|
874
|
+
};
|
|
875
|
+
8C9EB4C02FB6D07F0015F5D4 /* include */ = {
|
|
876
|
+
isa = PBXGroup;
|
|
877
|
+
children = (
|
|
878
|
+
8C9EB4BE2FB6D07F0015F5D4 /* xot */,
|
|
879
|
+
8C9EB4BF2FB6D07F0015F5D4 /* xot.h */,
|
|
880
|
+
);
|
|
881
|
+
name = include;
|
|
882
|
+
path = ../../../../xot/include;
|
|
883
|
+
sourceTree = SOURCE_ROOT;
|
|
884
|
+
};
|
|
885
|
+
8C9EB4CB2FB6D0910015F5D4 /* src */ = {
|
|
886
|
+
isa = PBXGroup;
|
|
887
|
+
children = (
|
|
888
|
+
8C9EB4C12FB6D0910015F5D4 /* debug.cpp */,
|
|
889
|
+
8C9EB4C32FB6D0910015F5D4 /* exception.cpp */,
|
|
890
|
+
8C9EB4C52FB6D0910015F5D4 /* string.cpp */,
|
|
891
|
+
8C9EB4C72FB6D0910015F5D4 /* time.cpp */,
|
|
892
|
+
8C9EB4C92FB6D0910015F5D4 /* util.cpp */,
|
|
893
|
+
);
|
|
894
|
+
name = src;
|
|
895
|
+
path = ../../../../xot/src;
|
|
896
|
+
sourceTree = SOURCE_ROOT;
|
|
897
|
+
};
|
|
663
898
|
/* End PBXGroup section */
|
|
664
899
|
|
|
665
900
|
/* Begin PBXNativeTarget section */
|
|
@@ -694,6 +929,7 @@
|
|
|
694
929
|
developmentRegion = English;
|
|
695
930
|
hasScannedForEncodings = 0;
|
|
696
931
|
knownRegions = (
|
|
932
|
+
English,
|
|
697
933
|
en,
|
|
698
934
|
Base,
|
|
699
935
|
);
|
|
@@ -724,94 +960,116 @@
|
|
|
724
960
|
isa = PBXSourcesBuildPhase;
|
|
725
961
|
buildActionMask = 2147483647;
|
|
726
962
|
files = (
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
83DE176419A48FF000A010E4 /* b2PolygonShape.cpp in Sources */,
|
|
758
|
-
8375D537196E841D00BCFDDC /* selector.cpp in Sources */,
|
|
759
|
-
836886F4194AB07700923B8B /* bounds.cpp in Sources */,
|
|
760
|
-
83DE176719A48FF000A010E4 /* b2Math.cpp in Sources */,
|
|
761
|
-
83DE178019A48FF000A010E4 /* b2PrismaticJoint.cpp in Sources */,
|
|
762
|
-
83DE176E19A48FF000A010E4 /* b2Island.cpp in Sources */,
|
|
763
|
-
8375D520196E841D00BCFDDC /* event.cpp in Sources */,
|
|
764
|
-
8375D55B196ED83900BCFDDC /* reflex.mm in Sources */,
|
|
765
|
-
83688692194AACF400923B8B /* debug.cpp in Sources */,
|
|
766
|
-
83DE178D19A4907100A010E4 /* body.cpp in Sources */,
|
|
767
|
-
83DE176F19A48FF000A010E4 /* b2World.cpp in Sources */,
|
|
768
|
-
83688710194AB07700923B8B /* point.cpp in Sources */,
|
|
769
|
-
83DE178119A48FF000A010E4 /* b2PulleyJoint.cpp in Sources */,
|
|
770
|
-
834393FD196AE839001ECC57 /* program.cpp in Sources */,
|
|
771
|
-
8375D524196E841D00BCFDDC /* image_view.cpp in Sources */,
|
|
772
|
-
83688718194AB07700923B8B /* texture.cpp in Sources */,
|
|
773
|
-
83688714194AB07700923B8B /* render_buffer.cpp in Sources */,
|
|
774
|
-
83DE177019A48FF000A010E4 /* b2WorldCallbacks.cpp in Sources */,
|
|
775
|
-
83688704194AB07700923B8B /* exception.cpp in Sources */,
|
|
776
|
-
83DE175C19A48FF000A010E4 /* b2CollidePolygon.cpp in Sources */,
|
|
777
|
-
83688706194AB07700923B8B /* frame_buffer.cpp in Sources */,
|
|
778
|
-
83DE176019A48FF000A010E4 /* b2TimeOfImpact.cpp in Sources */,
|
|
779
|
-
83DE175D19A48FF000A010E4 /* b2Collision.cpp in Sources */,
|
|
780
|
-
83DE177719A48FF000A010E4 /* b2EdgeAndPolygonContact.cpp in Sources */,
|
|
781
|
-
83DE175B19A48FF000A010E4 /* b2CollideEdge.cpp in Sources */,
|
|
782
|
-
83DE177E19A48FF000A010E4 /* b2MotorJoint.cpp in Sources */,
|
|
783
|
-
8375D522196E841D00BCFDDC /* exception.cpp in Sources */,
|
|
784
|
-
8375D53B196E841D00BCFDDC /* style_length.cpp in Sources */,
|
|
785
|
-
83DE178519A48FF000A010E4 /* b2WheelJoint.cpp in Sources */,
|
|
786
|
-
8368870C194AB07700923B8B /* opengl.cpp in Sources */,
|
|
787
|
-
836886FE194AB07700923B8B /* rays.mm in Sources */,
|
|
788
|
-
8375D559196ED83900BCFDDC /* event.mm in Sources */,
|
|
789
|
-
83DE177B19A48FF000A010E4 /* b2FrictionJoint.cpp in Sources */,
|
|
790
|
-
8375D557196ED83900BCFDDC /* app_delegate.mm in Sources */,
|
|
791
|
-
83DE177819A48FF000A010E4 /* b2PolygonAndCircleContact.cpp in Sources */,
|
|
792
|
-
83688702194AB07700923B8B /* color_space.cpp in Sources */,
|
|
793
|
-
8375D558196ED83900BCFDDC /* native_window.mm in Sources */,
|
|
794
|
-
83DE177519A48FF000A010E4 /* b2ContactSolver.cpp in Sources */,
|
|
963
|
+
8C9E9BB42FB58BBD0015F5D4 /* camera.mm in Sources */,
|
|
964
|
+
8C9E9BB62FB58BBD0015F5D4 /* painter.cpp in Sources */,
|
|
965
|
+
8C9E9BB82FB58BBD0015F5D4 /* polygon.cpp in Sources */,
|
|
966
|
+
8C9E9BBA2FB58BBD0015F5D4 /* bitmap.cpp in Sources */,
|
|
967
|
+
8C9E9BBC2FB58BBD0015F5D4 /* font.mm in Sources */,
|
|
968
|
+
8C9E9BBD2FB58BBD0015F5D4 /* coord.cpp in Sources */,
|
|
969
|
+
8C9E9BBE2FB58BBD0015F5D4 /* color_space.cpp in Sources */,
|
|
970
|
+
8C9E9BBF2FB58BBD0015F5D4 /* shader_program.cpp in Sources */,
|
|
971
|
+
8C9E9BC02FB58BBD0015F5D4 /* shader_source.cpp in Sources */,
|
|
972
|
+
8C9E9BC12FB58BBD0015F5D4 /* point.cpp in Sources */,
|
|
973
|
+
8C9E9BC32FB58BBD0015F5D4 /* util.cpp in Sources */,
|
|
974
|
+
8C9E9BC42FB58BBD0015F5D4 /* polyline.cpp in Sources */,
|
|
975
|
+
8C9E9BC62FB58BBD0015F5D4 /* bounds.cpp in Sources */,
|
|
976
|
+
8C9EAF032FB58E740015F5D4 /* Splines.cpp in Sources */,
|
|
977
|
+
8C9EAF3E2FB58E740015F5D4 /* clipper.cpp in Sources */,
|
|
978
|
+
8C9E9BC72FB58BBD0015F5D4 /* painter.cpp in Sources */,
|
|
979
|
+
8C9E9BCA2FB58BBD0015F5D4 /* render_buffer.cpp in Sources */,
|
|
980
|
+
8C9E9BCB2FB58BBD0015F5D4 /* font.cpp in Sources */,
|
|
981
|
+
8C9E9BCC2FB58BBD0015F5D4 /* rays.mm in Sources */,
|
|
982
|
+
8C9E9BCD2FB58BBD0015F5D4 /* shader.cpp in Sources */,
|
|
983
|
+
8C9E9BD02FB58BBD0015F5D4 /* frame_buffer.cpp in Sources */,
|
|
984
|
+
8C9E9BD12FB58BBD0015F5D4 /* opengl.cpp in Sources */,
|
|
985
|
+
8C9E9BD22FB58BBD0015F5D4 /* matrix.cpp in Sources */,
|
|
986
|
+
8C9E9BD32FB58BBD0015F5D4 /* image.cpp in Sources */,
|
|
987
|
+
8C9E9BD42FB58BBD0015F5D4 /* opengl.mm in Sources */,
|
|
988
|
+
8C9E9BD52FB58BBD0015F5D4 /* color.cpp in Sources */,
|
|
989
|
+
8C9E9BD62FB58BBD0015F5D4 /* color_space.cpp in Sources */,
|
|
990
|
+
8C9E9BD92FB58BBD0015F5D4 /* texture.cpp in Sources */,
|
|
991
|
+
8C9E9BDD2FB58BBD0015F5D4 /* bitmap.mm in Sources */,
|
|
992
|
+
8C9E9BDE2FB58BBD0015F5D4 /* exception.cpp in Sources */,
|
|
795
993
|
832CF767197F457C0024BB50 /* main.cpp in Sources */,
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
994
|
+
8C9EB0CA2FB590FF0015F5D4 /* event.mm in Sources */,
|
|
995
|
+
8C9EB0CE2FB590FF0015F5D4 /* fixture.cpp in Sources */,
|
|
996
|
+
8C9EB0CF2FB590FF0015F5D4 /* exception.cpp in Sources */,
|
|
997
|
+
8C9EB0D22FB590FF0015F5D4 /* event.cpp in Sources */,
|
|
998
|
+
8C9EB0D32FB590FF0015F5D4 /* world.cpp in Sources */,
|
|
999
|
+
8C9EB0D42FB590FF0015F5D4 /* screen.mm in Sources */,
|
|
1000
|
+
8C9EB0D62FB590FF0015F5D4 /* image_view.cpp in Sources */,
|
|
1001
|
+
8C9EB0D82FB590FF0015F5D4 /* device.cpp in Sources */,
|
|
1002
|
+
8C9EB0D92FB590FF0015F5D4 /* shape.cpp in Sources */,
|
|
1003
|
+
8C9EB0DB2FB590FF0015F5D4 /* timer.cpp in Sources */,
|
|
1004
|
+
8C9EB0DC2FB590FF0015F5D4 /* window.cpp in Sources */,
|
|
1005
|
+
8C9EB0DD2FB590FF0015F5D4 /* gamepad.mm in Sources */,
|
|
1006
|
+
8C9EB3D42FB591A90015F5D4 /* b2_gear_joint.cpp in Sources */,
|
|
1007
|
+
8C9EB3DA2FB591A90015F5D4 /* b2_polygon_circle_contact.cpp in Sources */,
|
|
1008
|
+
8C9EB3DC2FB591A90015F5D4 /* b2_weld_joint.cpp in Sources */,
|
|
1009
|
+
8C9EB3E32FB591A90015F5D4 /* b2_joint.cpp in Sources */,
|
|
1010
|
+
8C9EB3E42FB591A90015F5D4 /* b2_distance.cpp in Sources */,
|
|
1011
|
+
8C9EB3EA2FB591A90015F5D4 /* b2_edge_circle_contact.cpp in Sources */,
|
|
1012
|
+
8C9EB3EF2FB591A90015F5D4 /* b2_pulley_joint.cpp in Sources */,
|
|
1013
|
+
8C9EB3F42FB591A90015F5D4 /* b2_revolute_joint.cpp in Sources */,
|
|
1014
|
+
8C9EB3F72FB591A90015F5D4 /* b2_rope.cpp in Sources */,
|
|
1015
|
+
8C9EB3F92FB591A90015F5D4 /* b2_contact_solver.cpp in Sources */,
|
|
1016
|
+
8C9EB3FE2FB591A90015F5D4 /* b2_circle_shape.cpp in Sources */,
|
|
1017
|
+
8C9EB3FF2FB591A90015F5D4 /* b2_world.cpp in Sources */,
|
|
1018
|
+
8C9EB4012FB591A90015F5D4 /* b2_prismatic_joint.cpp in Sources */,
|
|
1019
|
+
8C9EB4032FB591A90015F5D4 /* b2_chain_circle_contact.cpp in Sources */,
|
|
1020
|
+
8C9EB4042FB591A90015F5D4 /* RtMidi.cpp in Sources */,
|
|
1021
|
+
8C9EB4052FB591A90015F5D4 /* b2_draw.cpp in Sources */,
|
|
1022
|
+
8C9EB4092FB591A90015F5D4 /* b2_collide_circle.cpp in Sources */,
|
|
1023
|
+
8C9EB40C2FB591A90015F5D4 /* b2_circle_contact.cpp in Sources */,
|
|
1024
|
+
8C9EB4142FB591A90015F5D4 /* b2_fixture.cpp in Sources */,
|
|
1025
|
+
8C9EB4192FB591A90015F5D4 /* b2_math.cpp in Sources */,
|
|
1026
|
+
8C9EB41D2FB591A90015F5D4 /* b2_timer.cpp in Sources */,
|
|
1027
|
+
8C9EB41F2FB591A90015F5D4 /* b2_polygon_contact.cpp in Sources */,
|
|
1028
|
+
8C9EB4212FB591A90015F5D4 /* b2_time_of_impact.cpp in Sources */,
|
|
1029
|
+
8C9EB4272FB591A90015F5D4 /* b2_collision.cpp in Sources */,
|
|
1030
|
+
8C9EB42B2FB591A90015F5D4 /* b2_motor_joint.cpp in Sources */,
|
|
1031
|
+
8C9EB42C2FB591A90015F5D4 /* b2_block_allocator.cpp in Sources */,
|
|
1032
|
+
8C9EB4D12FB6D0910015F5D4 /* string.cpp in Sources */,
|
|
1033
|
+
8C9EB4D22FB6D0910015F5D4 /* debug.cpp in Sources */,
|
|
1034
|
+
8C9EB4D32FB6D0910015F5D4 /* time.cpp in Sources */,
|
|
1035
|
+
8C9EB4D42FB6D0910015F5D4 /* exception.cpp in Sources */,
|
|
1036
|
+
8C9EB4D52FB6D0910015F5D4 /* util.cpp in Sources */,
|
|
1037
|
+
8C9EB4372FB591A90015F5D4 /* b2_collide_edge.cpp in Sources */,
|
|
1038
|
+
8C9EB4382FB591A90015F5D4 /* b2_chain_shape.cpp in Sources */,
|
|
1039
|
+
8C9EB4392FB591A90015F5D4 /* b2_collide_polygon.cpp in Sources */,
|
|
1040
|
+
8C9EB43E2FB591A90015F5D4 /* b2_body.cpp in Sources */,
|
|
1041
|
+
8C9EB4402FB591A90015F5D4 /* b2_dynamic_tree.cpp in Sources */,
|
|
1042
|
+
8C9EB4452FB591A90015F5D4 /* b2_mouse_joint.cpp in Sources */,
|
|
1043
|
+
8C9EB44C2FB591A90015F5D4 /* b2_settings.cpp in Sources */,
|
|
1044
|
+
8C9EB4502FB591A90015F5D4 /* b2_stack_allocator.cpp in Sources */,
|
|
1045
|
+
8C9EB4522FB591A90015F5D4 /* b2_polygon_shape.cpp in Sources */,
|
|
1046
|
+
8C9EB4582FB591A90015F5D4 /* b2_contact_manager.cpp in Sources */,
|
|
1047
|
+
8C9EB4592FB591A90015F5D4 /* b2_island.cpp in Sources */,
|
|
1048
|
+
8C9EB45A2FB591A90015F5D4 /* b2_edge_shape.cpp in Sources */,
|
|
1049
|
+
8C9EB45B2FB591A90015F5D4 /* b2_edge_polygon_contact.cpp in Sources */,
|
|
1050
|
+
8C9EB4622FB591A90015F5D4 /* b2_friction_joint.cpp in Sources */,
|
|
1051
|
+
8C9EB4632FB591A90015F5D4 /* b2_wheel_joint.cpp in Sources */,
|
|
1052
|
+
8C9EB4642FB591A90015F5D4 /* b2_distance_joint.cpp in Sources */,
|
|
1053
|
+
8C9EB46F2FB591A90015F5D4 /* b2_contact.cpp in Sources */,
|
|
1054
|
+
8C9EB4712FB591A90015F5D4 /* b2_chain_polygon_contact.cpp in Sources */,
|
|
1055
|
+
8C9EB4722FB591A90015F5D4 /* b2_broad_phase.cpp in Sources */,
|
|
1056
|
+
8C9EB4742FB591A90015F5D4 /* b2_world_callbacks.cpp in Sources */,
|
|
1057
|
+
8C9EB0E22FB590FF0015F5D4 /* selector.cpp in Sources */,
|
|
1058
|
+
8C9EB0E52FB590FF0015F5D4 /* midi.cpp in Sources */,
|
|
1059
|
+
8C9EB0E72FB590FF0015F5D4 /* window.mm in Sources */,
|
|
1060
|
+
8C9EB0EA2FB590FF0015F5D4 /* pointer.cpp in Sources */,
|
|
1061
|
+
8C9EB0EB2FB590FF0015F5D4 /* filter.cpp in Sources */,
|
|
1062
|
+
8C9EB0EC2FB590FF0015F5D4 /* gamepad.cpp in Sources */,
|
|
1063
|
+
8C9EB0ED2FB590FF0015F5D4 /* device.mm in Sources */,
|
|
1064
|
+
8C9EB0EF2FB590FF0015F5D4 /* style.cpp in Sources */,
|
|
1065
|
+
8C9EB0F32FB590FF0015F5D4 /* reflex.mm in Sources */,
|
|
1066
|
+
8C9EB0F42FB590FF0015F5D4 /* application.cpp in Sources */,
|
|
1067
|
+
8C9EB0F52FB590FF0015F5D4 /* body.cpp in Sources */,
|
|
1068
|
+
8C9EB0F62FB590FF0015F5D4 /* app_delegate.mm in Sources */,
|
|
1069
|
+
8C9EB0F82FB590FF0015F5D4 /* reflex.cpp in Sources */,
|
|
1070
|
+
8C9EB0F92FB590FF0015F5D4 /* view.cpp in Sources */,
|
|
1071
|
+
8C9EB0FA2FB590FF0015F5D4 /* view_controller.mm in Sources */,
|
|
1072
|
+
8C9EB0FD2FB590FF0015F5D4 /* application.mm in Sources */,
|
|
815
1073
|
);
|
|
816
1074
|
runOnlyForDeploymentPostprocessing = 0;
|
|
817
1075
|
};
|
|
@@ -833,7 +1091,7 @@
|
|
|
833
1091
|
isa = XCBuildConfiguration;
|
|
834
1092
|
buildSettings = {
|
|
835
1093
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
836
|
-
CLANG_CXX_LANGUAGE_STANDARD = "
|
|
1094
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
837
1095
|
CLANG_CXX_LIBRARY = "libc++";
|
|
838
1096
|
CLANG_ENABLE_MODULES = YES;
|
|
839
1097
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
@@ -872,7 +1130,7 @@
|
|
|
872
1130
|
isa = XCBuildConfiguration;
|
|
873
1131
|
buildSettings = {
|
|
874
1132
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
875
|
-
CLANG_CXX_LANGUAGE_STANDARD = "
|
|
1133
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
876
1134
|
CLANG_CXX_LIBRARY = "libc++";
|
|
877
1135
|
CLANG_ENABLE_MODULES = YES;
|
|
878
1136
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
@@ -907,18 +1165,29 @@
|
|
|
907
1165
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
908
1166
|
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
|
909
1167
|
CLANG_ENABLE_OBJC_ARC = NO;
|
|
1168
|
+
GCC_C_LANGUAGE_STANDARD = "-std=c++20";
|
|
910
1169
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
911
1170
|
GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
|
|
912
|
-
GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS =
|
|
1171
|
+
GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = (
|
|
1172
|
+
"IOS=1",
|
|
1173
|
+
"__MACOSX_CORE__=1",
|
|
1174
|
+
);
|
|
913
1175
|
HEADER_SEARCH_PATHS = (
|
|
914
|
-
../../../../reflex/src
|
|
1176
|
+
../../../../reflex/vendor/box2d/src,
|
|
1177
|
+
../../../../reflex/vendor/box2d/include,
|
|
1178
|
+
../../../../reflex/vendor/rtmidi/rtmidi,
|
|
915
1179
|
../../../../reflex/include,
|
|
1180
|
+
../../../../rays/vendor/clipper/cpp,
|
|
1181
|
+
../../../../rays/vendor/earcut.hpp/include/mapbox,
|
|
1182
|
+
../../../../rays/vendor/glm,
|
|
1183
|
+
"../../../../rays/vendor/splines-lib",
|
|
916
1184
|
../../../../rays/include,
|
|
917
1185
|
../../../../xot/include,
|
|
918
1186
|
"$(inherited)",
|
|
919
1187
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
920
1188
|
);
|
|
921
1189
|
INFOPLIST_FILE = "hello/hello-Info.plist";
|
|
1190
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
922
1191
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
923
1192
|
USER_HEADER_SEARCH_PATHS = "";
|
|
924
1193
|
WRAPPER_EXTENSION = app;
|
|
@@ -931,18 +1200,29 @@
|
|
|
931
1200
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
932
1201
|
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
|
933
1202
|
CLANG_ENABLE_OBJC_ARC = NO;
|
|
1203
|
+
GCC_C_LANGUAGE_STANDARD = "-std=c++20";
|
|
934
1204
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
|
935
1205
|
GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
|
|
936
|
-
GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS =
|
|
1206
|
+
GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = (
|
|
1207
|
+
"IOS=1",
|
|
1208
|
+
"__MACOSX_CORE__=1",
|
|
1209
|
+
);
|
|
937
1210
|
HEADER_SEARCH_PATHS = (
|
|
938
|
-
../../../../reflex/src
|
|
1211
|
+
../../../../reflex/vendor/box2d/src,
|
|
1212
|
+
../../../../reflex/vendor/box2d/include,
|
|
1213
|
+
../../../../reflex/vendor/rtmidi/rtmidi,
|
|
939
1214
|
../../../../reflex/include,
|
|
1215
|
+
../../../../rays/vendor/clipper/cpp,
|
|
1216
|
+
../../../../rays/vendor/earcut.hpp/include/mapbox,
|
|
1217
|
+
../../../../rays/vendor/glm,
|
|
1218
|
+
"../../../../rays/vendor/splines-lib",
|
|
940
1219
|
../../../../rays/include,
|
|
941
1220
|
../../../../xot/include,
|
|
942
1221
|
"$(inherited)",
|
|
943
1222
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
944
1223
|
);
|
|
945
1224
|
INFOPLIST_FILE = "hello/hello-Info.plist";
|
|
1225
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
946
1226
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
947
1227
|
USER_HEADER_SEARCH_PATHS = "";
|
|
948
1228
|
WRAPPER_EXTENSION = app;
|