-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog.txt
executable file
·11572 lines (11295 loc) · 600 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
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
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-12-24 [r169] uratec:
* MMDAgent/Library_Open_JTalk/src/ChangeLog,
MMDAgent/Library_Open_JTalk/src/bin/open_jtalk.c: Re-update Open
JTalk.
2011-12-21 [r168] uratec:
* MMDAgent/Release/AppData/Julius/phone_m/README.txt,
MMDAgent/Release/COPYRIGHT.txt, MMDAgent/NEWS.txt,
MMDAgent/Release/NEWS.txt, MMDAgent/README.txt,
MMDAgent/Release/README.txt: Update all documents to version 1.2
2011-12-21 [r166-167] uratec:
* MMDAgent/Library_MMDFiles/src/lib/PMDModel_update.cpp: Fix source
format.
* MMDAgent/Library_GLFW/src/docs/Reference.pdf,
MMDAgent/Library_GLFW/src/docs/UsersGuide.pdf: Update GLFW
reference
2011-12-21 [r165] uratec:
* MMDAgent/Library_MMDAgent/src/lib/PMDObject.cpp,
MMDAgent/Library_MMDFiles/src/include/PMDModel.h,
MMDAgent/Library_MMDFiles/src/lib/PMDModel_update.cpp,
MMDAgent/Library_MMDFiles/src/lib/PMDBone.cpp,
MMDAgent/Library_MMDAgent/include/Render.h,
MMDAgent/Library_MMDFiles/src/lib/PMDModel_parse.cpp,
MMDAgent/Library_MMDFiles/include/PMDModel.h,
MMDAgent/Library_MMDAgent/src/include/Render.h: Fix bone motion
which have IK controlled parent
2011-12-21 [r164] uratec:
* MMDAgent/Library_Julius/src/libjulius/src/adin-cut.c,
MMDAgent/Library_Julius/src/libsent/src/voca/voca_load_wordlist.c,
MMDAgent/Library_Julius/src/man/ja/julius.1,
MMDAgent/Library_Julius/src/adinrec/00readme.txt,
MMDAgent/Library_Julius/src/libjulius/src/m_options.c,
MMDAgent/Library_Julius/include/sent/ngram2.h,
MMDAgent/Library_Julius/src/mkbingram/00readme.txt,
MMDAgent/Library_Julius/src/libjulius/configure,
MMDAgent/Library_Julius/src/libsent/src/wav2mfcc/wav2mfcc-pipe.c,
MMDAgent/Library_Julius/src/libjulius/include/julius/jconf.h,
MMDAgent/Library_Julius/src/Release-ja.txt,
MMDAgent/Library_Julius/src/libjulius/configure.in,
MMDAgent/Library_Julius/src/julius/configure,
MMDAgent/Library_Julius/include/julius/recog.h,
MMDAgent/Library_Julius/src/libsent/include/sent/adin.h,
MMDAgent/Library_Julius/src/Release.txt,
MMDAgent/Library_Julius/src/libjulius/src/default.c,
MMDAgent/Library_Julius/src/adintool/adintool.c,
MMDAgent/Library_Julius/src/libjulius/src/dfa_decode.c,
MMDAgent/Library_Julius/src/libsent/include/sent/ngram2.h,
MMDAgent/Library_Julius/src/00readme.txt,
MMDAgent/Library_Julius/src/adintool/00readme-ja.txt,
MMDAgent/Library_Julius/src/julius/00readme-ja.txt,
MMDAgent/Library_Julius/src/libjulius/src/beam.c,
MMDAgent/Library_Julius/src/libjulius/src/recogmain.c,
MMDAgent/Library_Julius/src/man/adinrec.1,
MMDAgent/Library_Julius/src/libsent/configure,
MMDAgent/Library_Julius/src/libjulius/src/m_info.c,
MMDAgent/Library_Julius/src/man/adintool.1,
MMDAgent/Library_Julius/src/adintool/00readme.txt,
MMDAgent/Library_Julius/src/libjulius/include/julius/recog.h,
MMDAgent/Library_Julius/src/man/julius.1,
MMDAgent/Library_Julius/src/libsent/configure.in,
MMDAgent/Library_Julius/src/julius/00readme.txt,
MMDAgent/Library_Julius/src/libjulius/src/m_fusion.c,
MMDAgent/Library_Julius/src/support/build-all.sh,
MMDAgent/Library_Julius/src/libjulius/src/m_usage.c,
MMDAgent/Library_Julius/src/adinrec/adinrec.c,
MMDAgent/Library_Julius/include/julius/jconf.h,
MMDAgent/Library_Julius/src/julius/output_stdout.c,
MMDAgent/Library_Julius/src/libsent/src/wav2mfcc/wav2mfcc-buffer.c,
MMDAgent/Library_Julius/src/libsent/src/voca/voca_load_htkdict.c,
MMDAgent/Library_Julius/src/00readme-ja.txt,
MMDAgent/Library_Julius/src/libsent/src/ngram/init_ngram.c,
MMDAgent/Library_Julius/include/sent/adin.h,
MMDAgent/Library_Julius/src/adinrec/00readme-ja.txt,
MMDAgent/Library_Julius/src/man/ja/adinrec.1,
MMDAgent/Library_Julius/src/mkbingram/00readme-ja.txt,
MMDAgent/Library_Julius/src/libsent/src/ngram/ngram_util.c,
MMDAgent/Library_Julius/src/man/ja/adintool.1: Update Julius to
version 4.2.1
2011-12-21 [r163] uratec:
* MMDAgent/Library_Open_JTalk/src/configure.ac,
MMDAgent/Library_Open_JTalk/Makefile.mingw,
MMDAgent/Library_Open_JTalk/src/jpcommon/jpcommon_rule_euc_jp.h,
MMDAgent/Library_Open_JTalk/src/mecab-naist-jdic/naist-jdic.csv,
MMDAgent/Library_Open_JTalk/src/NEWS,
MMDAgent/Library_Open_JTalk/src/njd_set_digit/njd_set_digit_rule_euc_jp.h,
MMDAgent/Library_Open_JTalk/src/configure,
MMDAgent/Library_Open_JTalk/src/jpcommon/jpcommon_rule_shift_jis.h,
MMDAgent/Library_Open_JTalk/src/jpcommon/jpcommon_label.c,
MMDAgent/Library_Open_JTalk/src/AUTHORS,
MMDAgent/Library_Open_JTalk/src/jpcommon/jpcommon_rule_utf_8.h,
MMDAgent/Library_Open_JTalk/src/ChangeLog,
MMDAgent/Library_Open_JTalk/src/njd_set_accent_type/njd_set_accent_type.c,
MMDAgent/Library_Open_JTalk/Makefile.carbon,
MMDAgent/Library_Open_JTalk/src/njd_set_digit/njd_set_digit_rule_shift_jis.h,
MMDAgent/Release/AppData/Open_JTalk/sys.dic,
MMDAgent/Library_Open_JTalk/src/README,
MMDAgent/Library_Open_JTalk/src/njd_set_digit/njd_set_digit.c,
MMDAgent/Library_Open_JTalk/src/njd_set_digit/njd_set_digit_rule_utf_8.h,
MMDAgent/Library_Open_JTalk/Makefile.x11: Update Open JTalk to
version 1.05.
2011-12-21 [r161-162] uratec:
* MMDAgent/Library_GLFW/src/include/GL/glfw.h,
MMDAgent/Library_GLFW/src/lib/cocoa/Makefile.cocoa,
MMDAgent/Library_GLFW/src/lib/cocoa/cocoa_init.m,
MMDAgent/Library_GLFW/src/docs/GLFWReference.pdf (removed),
MMDAgent/Library_GLFW/src/docs/Reference.pdf (added),
MMDAgent/Library_GLFW/src/examples/Makefile.cocoa,
MMDAgent/Library_GLFW/src/docs/GLFWUsersGuide.pdf (removed),
MMDAgent/Library_GLFW/src/docs/UsersGuide.pdf (added),
MMDAgent/Library_GLFW/src/lib/cocoa/cocoa_window.m,
MMDAgent/Library_GLFW/src/readme.html,
MMDAgent/Library_GLFW/src/docs/glfwug.tex,
MMDAgent/Library_GLFW/src/tests/Makefile.cocoa,
MMDAgent/Library_GLFW/include/GL/glfw.h,
MMDAgent/Library_GLFW/src/docs/glfwrm.tex,
MMDAgent/Library_GLFW/src/tests/dynamic.c: Update GLFW to version
2.7.2
* MMDAgent/Library_hts_engine_API/src/lib/HTS_pstream.c,
MMDAgent/Library_hts_engine_API/src/configure,
MMDAgent/Library_hts_engine_API/src/lib/HTS_sstream.c,
MMDAgent/Library_hts_engine_API/src/lib/HTS_label.c,
MMDAgent/Library_hts_engine_API/src/AUTHORS,
MMDAgent/Library_hts_engine_API/src/ChangeLog,
MMDAgent/Library_hts_engine_API/src/include/HTS_engine.h,
MMDAgent/Library_hts_engine_API/src/README,
MMDAgent/Library_hts_engine_API/src/lib/HTS_misc.c,
MMDAgent/Library_hts_engine_API/src/configure.ac,
MMDAgent/Library_hts_engine_API/src/lib/HTS_model.c,
MMDAgent/Library_hts_engine_API/src/lib/HTS_hidden.h,
MMDAgent/Library_hts_engine_API/include/HTS_engine.h,
MMDAgent/Library_hts_engine_API/src/lib/HTS_audio.c,
MMDAgent/Library_hts_engine_API/src/lib/HTS_vocoder.c,
MMDAgent/Library_hts_engine_API/src/lib/HTS_gstream.c,
MMDAgent/Library_hts_engine_API/src/lib/HTS_engine.c,
MMDAgent/Library_hts_engine_API/src/NEWS,
MMDAgent/Library_hts_engine_API/src/bin/hts_engine.c: Update
hts_engine API to version 1.06
2011-12-21 [r160] uratec:
* MMDAgent/Library_Bullet_Physics/src/Extras/Serialize/BulletWorldImporter/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/stb_image.cpp
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/BasicDemo/Makefile.in
(removed), MMDAgent/Library_Bullet_Physics/src/msvc/vs2008.bat
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/shader_util.cc
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexShape.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/ConstraintSolver/btTypedConstraint.cpp,
MMDAgent/Library_Bullet_Physics/src/ChangeLog,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/btSoftBodySolver_OpenCL.h,
MMDAgent/Library_Bullet_Physics/src/Demos/ConvexDecompositionDemo/ConvexDecompositionDemo.cpp,
MMDAgent/Library_Bullet_Physics/src/msvc/premake4.lua (added),
MMDAgent/Library_Bullet_Physics/include/BulletCollision/BroadphaseCollision/btQuantizedBvh.h,
MMDAgent/Library_Bullet_Physics/src/missing (removed),
MMDAgent/Library_Bullet_Physics/src/NEWS,
MMDAgent/Library_Bullet_Physics/src/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btAlignedObjectArray.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/opengl_context_ptrs.h
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/DX11ClothDemo/cloth.h,
MMDAgent/Library_Bullet_Physics/src/Makefile.in (removed),
MMDAgent/Library_Bullet_Physics/src/Demos/SharedOpenCL/btOclUtils.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/vector3.js
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/MultiThreadedDemo/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btQuickprof.h,
MMDAgent/Library_Bullet_Physics/src/Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.cpp
(removed),
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btConvexHullComputer.h,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btConvexShape.h,
MMDAgent/Library_Bullet_Physics/src/Extras/premake4.lua (added),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdVersion.h
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/AllBulletDemos/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/GL_ShapeDrawer.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btManifoldResult.cpp,
MMDAgent/Library_Bullet_Physics/src/COPYING,
MMDAgent/Library_Bullet_Physics/src/msvc/findOpenCL.lua (added),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdCircularList.h
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/SharedOpenCL/btOclCommon.cpp,
MMDAgent/Library_Bullet_Physics/include/BulletMultiThreaded/PosixThreadSupport.h,
MMDAgent/Library_Bullet_Physics/src/aclocal.m4 (removed),
MMDAgent/Library_Bullet_Physics/include/BulletSoftBody/btSoftBodyInternals.h,
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btQuickprof.cpp,
MMDAgent/Library_Bullet_Physics/src/Extras/Makefile.in (removed),
MMDAgent/Library_Bullet_Physics/Library_Bullet_Physics.vcproj,
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btScalar.h,
MMDAgent/Library_Bullet_Physics/src/config.h.in,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/trackball.js
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/btSoftBodyHelpers.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/VehicleDemo/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/msvc/2008_amd_opencl
(removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexShape.h,
MMDAgent/Library_Bullet_Physics/src/Bullet_User_Manual.pdf,
MMDAgent/Library_Bullet_Physics/src/UnitTests/cppunit/include/cppunit/config-auto.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/ConstraintSolver/btHingeConstraint.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient (added),
MMDAgent/Library_Bullet_Physics/src/msvc/vs_all.bat (added),
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/btSoftBody.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/cube.cc
(added), MMDAgent/Library_Bullet_Physics/COPYRIGHT.txt,
MMDAgent/Library_Bullet_Physics/include/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h,
MMDAgent/Library_Bullet_Physics/src/Demos/TerrainDemo/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/Extras/Serialize/BulletFileLoader/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.cpp,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdGraph.cpp
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/Intel
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/CDTestFramework/CDTestFramework.sln,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/msvc/vs2005.bat (added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/AMD/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Doxyfile,
MMDAgent/Library_Bullet_Physics/src/Extras/CDTestFramework/Opcode/OPC_ArraySAP.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/btSoftBodySolver_DX11.h,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btConvexInternalShape.h,
MMDAgent/Library_Bullet_Physics/src/Extras/ConvexDecomposition/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/cl_cloth_demo.cpp,
MMDAgent/Library_Bullet_Physics/src/configure.ac,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btBox2dShape.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.cpp,
MMDAgent/Library_Bullet_Physics/src/msvc/vs2010.bat (added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/atiFlag.bmp
(removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexHullShape.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/tumbler.js
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/NVidia/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/clstuff.cpp,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btBoxShape.h,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/DemoApplication.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/cloth.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btConvexPlaneCollisionAlgorithm.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btSimulationIslandManager.cpp,
MMDAgent/Library_Bullet_Physics/src/depcomp (removed),
MMDAgent/Library_Bullet_Physics/src/Demos/ConvexDecompositionDemo/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/Intel/premake4.lua
(added), MMDAgent/Library_Bullet_Physics/src/bullet_logo.png
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdICHull.h
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/CDTestFramework/AntTweakBar/lib/libAntTweakBar.so
(added),
MMDAgent/Library_Bullet_Physics/src/msvc/findDirectX11.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/cube.h
(added), MMDAgent/Library_Bullet_Physics/src/msvc/premake4.exe
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/DX11ClothDemo/cloth_renderer.cpp,
MMDAgent/Library_Bullet_Physics/src/src/Makefile.in (removed),
MMDAgent/Library_Bullet_Physics/src/Demos/VectorAdd_OpenCL/MiniCL_VectorAdd.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/opengl_context.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btQuaternion.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btBoxShape.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btCollisionWorld.cpp,
MMDAgent/Library_Bullet_Physics/include/LinearMath/btQuaternion.h,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/CMakeLists.txt
(added),
MMDAgent/Library_Bullet_Physics/src/msvc/2008_dx11_directcompute
(removed),
MMDAgent/Library_Bullet_Physics/src/UnitTests/BulletUnitTests/TestLinearMath.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/DemoApplication.h,
MMDAgent/Library_Bullet_Physics/src/config.guess (removed),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/tumbler.cc
(added),
MMDAgent/Library_Bullet_Physics/include/BulletMultiThreaded/GpuSoftBodySolvers/DX11/btSoftBodySolver_DX11.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btCollisionMargin.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h
(removed),
MMDAgent/Library_Bullet_Physics/include/MiniCL/cl_platform.h,
MMDAgent/Library_Bullet_Physics/include/btBulletDynamicsCommon.h,
MMDAgent/Library_Bullet_Physics/include/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/btSoftBodySolver_OpenCL.h,
MMDAgent/Library_Bullet_Physics/src/msvc/bullet.rc,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/PosixThreadSupport.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexPolyhedron.h,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdVector.h
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/callback.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/MiniCL/MiniCLTaskScheduler.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/bmpLoader.hpp
(removed),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/tumbler.nmf
(added),
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btConvexHullShape.h,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/texture1.bmp
(removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/btSoftBodySolver_OpenCL.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/btSoftRigidDynamicsWorld.cpp,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionDispatch/btConvexPlaneCollisionAlgorithm.h,
MMDAgent/Library_Bullet_Physics/src/Extras/glui/GL/glui.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/scripting_bridge.cc
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/NVidia/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/ParticlesOpenCL/btParticlesDemoDynamicsWorld.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/Intel/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btPolyhedralConvexShape.cpp,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdVector.inl
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/DX11ClothDemo/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/include/BulletMultiThreaded/Win32ThreadSupport.h,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/SequentialThreadSupport.h,
MMDAgent/Library_Bullet_Physics/src/Demos/SerializeDemo/SerializeDemo.cpp,
MMDAgent/Library_Bullet_Physics/src/LICENSE (removed),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdICHull.cpp
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/AMD/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btConvexHullComputer.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/btSoftBodySolver_OpenCLSIMDAware.h,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btCollisionMargin.h,
MMDAgent/Library_Bullet_Physics/include/BulletDynamics/Dynamics/btContinuousDynamicsWorld.h
(removed),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/AMD/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD (added),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdHACD.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/btSoftBodyConcaveCollisionAlgorithm.cpp,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdManifoldMesh.cpp
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/bind.js
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/ConstraintSolver/btConeTwistConstraint.cpp,
MMDAgent/Library_Bullet_Physics/src/lib/readme.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/AllBulletDemos/Main.cpp,
MMDAgent/Library_Bullet_Physics/include/LinearMath/btAlignedObjectArray.h,
MMDAgent/Library_Bullet_Physics/src/VERSION,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/btSoftBodySolver_OpenCLSIMDAware.cpp,
MMDAgent/Library_Bullet_Physics/Makefile,
MMDAgent/Library_Bullet_Physics/src/Demos/AllBulletDemos/Makefile.am,
MMDAgent/Library_Bullet_Physics/src/Demos/Makefile.in (removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/premake4.lua
(added), MMDAgent/Library_Bullet_Physics/src/Demos/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/scripting_bridge.h
(added),
MMDAgent/Library_Bullet_Physics/include/LinearMath/btConvexHullComputer.h,
MMDAgent/Library_Bullet_Physics/src/autom4te.cache (removed),
MMDAgent/Library_Bullet_Physics/src/Extras/glui/glui_textbox.cpp,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdHACD.cpp
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexPolyhedron.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/transforms.cc
(added), MMDAgent/Library_Bullet_Physics/src/Extras/Makefile.am,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdManifoldMesh.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/btSoftBody.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/SoftDemo/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/AMD/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/src/BulletSoftBody/btSoftBodyInternals.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/btSoftBodySolver_DX11SIMDAware.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/ParticlesOpenCL/NVidia/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h,
MMDAgent/Library_Bullet_Physics/src/src/btBulletDynamicsCommon.h,
MMDAgent/Library_Bullet_Physics/include/LinearMath/btGrahamScan2dConvexHull.h
(added),
MMDAgent/Library_Bullet_Physics/include/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/btSoftBodySolver_OpenCLSIMDAware.h,
MMDAgent/Library_Bullet_Physics/src/Extras/glui/glui_edittext.cpp,
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexHullShape.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/ParticlesOpenCL/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/msvc/vs2008_dx11.bat (added),
MMDAgent/Library_Bullet_Physics/src/Demos/ConstraintDemo/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/httpd.cmd
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/transforms.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/NVidia/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/include/BulletMultiThreaded/SequentialThreadSupport.h,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/tumbler.h
(added), MMDAgent/Library_Bullet_Physics/src/config.sub
(removed),
MMDAgent/Library_Bullet_Physics/src/Extras/CDTestFramework/Opcode/Opcode.vcproj,
MMDAgent/Library_Bullet_Physics/include/LinearMath/btQuickprof.h,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/Intel
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/Apple/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/Win32ThreadSupport.h,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenGL/stb_image.h
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/bmpLoader.cpp
(removed),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/MiniCL/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/dragger.js
(added),
MMDAgent/Library_Bullet_Physics/src/Extras/CDTestFramework/CDTestFramework.vcproj,
MMDAgent/Library_Bullet_Physics/src/configure (removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/HLSL/SolvePositionsSIMDBatched.hlsl,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/shader_util.h
(added),
MMDAgent/Library_Bullet_Physics/include/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h,
MMDAgent/Library_Bullet_Physics/src/Demos/SoftDemo/SoftDemo.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btCylinderShape.cpp,
MMDAgent/Library_Bullet_Physics/include/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h,
MMDAgent/Library_Bullet_Physics/src/Demos/CcdPhysicsDemo/Makefile.in
(removed),
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/amdFlag.bmp
(removed), MMDAgent/Library_Bullet_Physics/src/src/Makefile.am,
MMDAgent/Library_Bullet_Physics/src/Demos/VehicleDemo/VehicleDemo.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/index.html
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/bin_html/httpd.py
(added),
MMDAgent/Library_Bullet_Physics/include/BulletSoftBody/btSoftBody.h,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/opengl_context.cc
(added),
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btBox2dShape.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/OpenCLC/OutputToVertexArray.cl,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/Intel/CMakeLists.txt
(added),
MMDAgent/Library_Bullet_Physics/include/BulletCollision/CollisionShapes/btConvexPolyhedron.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionDispatch/btConvexPlaneCollisionAlgorithm.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/bmpLoader.h
(removed),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/Intel/CMakeLists.txt
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btConvexInternalShape.h,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/OpenCLClothDemo/NVidia/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/Demos/AllBulletDemos/CMakeLists.txt,
MMDAgent/Library_Bullet_Physics/src/src/MiniCL/MiniCL.cpp,
MMDAgent/Library_Bullet_Physics/src/Demos/ParticlesOpenCL/btParticlesDynamicsWorld.h,
MMDAgent/Library_Bullet_Physics/include/LinearMath/btScalar.h,
MMDAgent/Library_Bullet_Physics/src/msvc/2008 (removed),
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdCircularList.inl
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/CollisionShapes/btBoxShape.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletCollision/NarrowPhaseCollision/btPolyhedralContactClipping.cpp,
MMDAgent/Library_Bullet_Physics/src/Extras/HACD/hacdGraph.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/premake4.lua
(added),
MMDAgent/Library_Bullet_Physics/src/src/BulletMultiThreaded/GpuSoftBodySolvers/DX11/btSoftBodySolver_DX11.cpp,
MMDAgent/Library_Bullet_Physics/src/src/BulletDynamics/Dynamics/btSimpleDynamicsWorld.h,
MMDAgent/Library_Bullet_Physics/src/compile (removed),
MMDAgent/Library_Bullet_Physics/src/src/LinearMath/btGrahamScan2dConvexHull.h
(added),
MMDAgent/Library_Bullet_Physics/src/src/MiniCL/cl_platform.h,
MMDAgent/Library_Bullet_Physics/src/ltmain.sh (removed),
MMDAgent/Library_Bullet_Physics/src/Demos/NativeClient/tumbler_module.cc
(added): Update Bullet Physics to version 2.79
2011-12-21 [r159] uratec:
* MMDAgent/Library_libpng/src/arm (added),
MMDAgent/Library_libpng/src/pngpread.c,
MMDAgent/Library_libpng/src/pngset.c,
MMDAgent/Library_libpng/src/contrib/visupng/VisualPng.c,
MMDAgent/Library_libpng/src/pngrutil.c,
MMDAgent/Library_libpng/src/projects/vstudio/pngvalid/pngvalid.vcxproj,
MMDAgent/Library_libpng/src/test-pngvalid-full.sh,
MMDAgent/Library_libpng/src/contrib/pngminim/encoder/README,
MMDAgent/Library_libpng/src/contrib/gregbook/README,
MMDAgent/Library_libpng/src/ltmain.sh,
MMDAgent/Library_libpng/src/README,
MMDAgent/Library_libpng/src/scripts/makefile.openbsd,
MMDAgent/Library_libpng/COPYRIGHT.txt,
MMDAgent/Library_libpng/src/contrib/pngminim/encoder/pngusr.h,
MMDAgent/Library_libpng/src/libpngpf.3,
MMDAgent/Library_libpng/src/contrib/pngminus/png2pnm.c,
MMDAgent/Library_libpng/include/pnglibconf.h,
MMDAgent/Library_libpng/src/scripts/options.awk,
MMDAgent/Library_libpng/src/png.c,
MMDAgent/Library_libpng/src/ANNOUNCE,
MMDAgent/Library_libpng/src/contrib/visupng/README.txt,
MMDAgent/Library_libpng/src/INSTALL,
MMDAgent/Library_libpng/include/pngpriv.h,
MMDAgent/Library_libpng/src/pngtest.png,
MMDAgent/Library_libpng/src/scripts/libpng.pc.in,
MMDAgent/Library_libpng/src/CHANGES,
MMDAgent/Library_libpng/src/scripts/libpng-config-head.in,
MMDAgent/Library_libpng/src/png.h,
MMDAgent/Library_libpng/include/pngstruct.h,
MMDAgent/Library_libpng/src/aclocal.m4,
MMDAgent/Library_libpng/src/projects/visualc71/PRJ0041.mak,
MMDAgent/Library_libpng/src/pngerror.c,
MMDAgent/Library_libpng/src/scripts/pnglibconf.mak,
MMDAgent/Library_libpng/src/pngwtran.c,
MMDAgent/Library_libpng/src/LICENSE,
MMDAgent/Library_libpng/src/projects/owatcom/pngtest.tgt (added),
MMDAgent/Library_libpng/src/contrib/gregbook/Makefile.w32,
MMDAgent/Library_libpng/src/config.guess,
MMDAgent/Library_libpng/src/contrib/pngminim/decoder/pngusr.dfa,
MMDAgent/Library_libpng/src/contrib/pngsuite/README,
MMDAgent/Library_libpng/src/contrib/gregbook/rpng-x.c,
MMDAgent/Library_libpng/src/projects/vstudio/pngstest (added),
MMDAgent/Library_libpng/src/contrib/pngminim/preader/README,
MMDAgent/Library_libpng/src/pngmem.c,
MMDAgent/Library_libpng/src/scripts/sym.dfn,
MMDAgent/Library_libpng/src/projects/vstudio/libpng/libpng.vcxproj,
MMDAgent/Library_libpng/src/scripts/makefile.cegcc,
MMDAgent/Library_libpng/src/contrib/visupng/resource.h,
MMDAgent/Library_libpng/src/Makefile.am,
MMDAgent/Library_libpng/src/test-pngtest.sh,
MMDAgent/Library_libpng/src/pngpriv.h,
MMDAgent/Library_libpng/src/scripts/symbols.def,
MMDAgent/Library_libpng/src/projects/owatcom/libpng.wpj (added),
MMDAgent/Library_libpng/include/pngconf.h,
MMDAgent/Library_libpng/src/pngtrans.c,
MMDAgent/Library_libpng/src/contrib/gregbook/rpng2-x.c,
MMDAgent/Library_libpng/src/projects/vstudio/vstudio.sln,
MMDAgent/Library_libpng/src/contrib/libtests/pngvalid.c (added),
MMDAgent/Library_libpng/src/contrib/gregbook/makevms.com,
MMDAgent/Library_libpng/src/pngstruct.h,
MMDAgent/Library_libpng/src/projects/vstudio/zlib/zlib.vcxproj,
MMDAgent/Library_libpng/src/pngwrite.c,
MMDAgent/Library_libpng/src/configure,
MMDAgent/Library_libpng/src/test-pngvalid-simple.sh,
MMDAgent/Library_libpng/src/contrib/gregbook/readpng2.c,
MMDAgent/Library_libpng/include/pnginfo.h,
MMDAgent/Library_libpng/src/Makefile.in,
MMDAgent/Library_libpng/src/scripts/pnglibconf.h.prebuilt,
MMDAgent/Library_libpng/src/pngwutil.c,
MMDAgent/Library_libpng/src/scripts/def.dfn,
MMDAgent/Library_libpng/src/scripts/makefile.watcom (removed),
MMDAgent/Library_libpng/src/scripts/makefile.std,
MMDAgent/Library_libpng/src/contrib/visupng/PngFile.c,
MMDAgent/Library_libpng/src/pngread.c,
MMDAgent/Library_libpng/src/projects/owatcom (added),
MMDAgent/Library_libpng/src/scripts/README.txt,
MMDAgent/Library_libpng/src/projects/owatcom/pngvalid.tgt
(added), MMDAgent/Library_libpng/src/contrib/visupng/PngFile.h,
MMDAgent/Library_libpng/src/contrib/pngminus/makefile.std,
MMDAgent/Library_libpng/src/projects/owatcom/libpng.tgt (added),
MMDAgent/Library_libpng/src/contrib/README.txt (added),
MMDAgent/Library_libpng/src/example.c,
MMDAgent/Library_libpng/src/pngrtran.c,
MMDAgent/Library_libpng/src/contrib/pngminim/decoder/README,
MMDAgent/Library_libpng/src/pngconf.h,
MMDAgent/Library_libpng/src/scripts/makefile.netbsd,
MMDAgent/Library_libpng/src/projects/owatcom/pngconfig.mak
(added), MMDAgent/Library_libpng/src/arm/filter_neon.S (added),
MMDAgent/Library_libpng/src/pngvalid.c (removed),
MMDAgent/Library_libpng/src/pnginfo.h,
MMDAgent/Library_libpng/src/png.5,
MMDAgent/Library_libpng/src/contrib/pngminim/decoder/pngusr.h,
MMDAgent/Library_libpng/src/scripts/makefile.darwin,
MMDAgent/Library_libpng/src/projects/vstudio/zlib.props,
MMDAgent/Library_libpng/src/contrib/libtests (added),
MMDAgent/Library_libpng/src/config.sub,
MMDAgent/Library_libpng/src/contrib/gregbook/readpng.c,
MMDAgent/Library_libpng/src/config.h.in,
MMDAgent/Library_libpng/src/scripts/pnglibconf.dfa,
MMDAgent/Library_libpng/src/scripts/makefile.ne12bsd,
MMDAgent/Library_libpng/src/projects/vstudio/readme.txt,
MMDAgent/Library_libpng/src/scripts/makefile.linux,
MMDAgent/Library_libpng/src/scripts/list (removed),
MMDAgent/Library_libpng/src/configure.ac,
MMDAgent/Library_libpng/src/contrib/gregbook/rpng2-win.c,
MMDAgent/Library_libpng/src/libpng-manual.txt,
MMDAgent/Library_libpng/src/contrib/pngminim/preader/pngusr.h,
MMDAgent/Library_libpng/src/pngget.c,
MMDAgent/Library_libpng/src/pngtest.c,
MMDAgent/Library_libpng/include/png.h,
MMDAgent/Library_libpng/src/contrib/pngminim/preader/pngusr.dfa,
MMDAgent/Library_libpng/src/libpng.3,
MMDAgent/Library_libpng/src/scripts/vers.dfn,
MMDAgent/Library_libpng/src/CMakeLists.txt: Update libpng to
version 1.5.7.
2011-12-21 [r158] uratec:
* MMDAgent/Library_MMDAgent/src/lib/TileTexture.cpp: Fix flash of
background image
2011-09-30 [r157] uratec:
* MMDAgent/Library_MMDAgent/src/lib/Message.cpp: Fix a bug for
Windows XP reported by an anonymous user.
2011-08-02 [r153] uratec:
* MMDAgent/Release/AppData/Julius/phone_m/README.txt,
MMDAgent/Release/COPYRIGHT.txt, MMDAgent/NEWS.txt,
MMDAgent/Release/NEWS.txt, MMDAgent/README.txt,
MMDAgent/Release/README.txt: update all documents
2011-08-02 [r151-152] uratec:
* MMDAgent/MMDAgent.sln, MMDAgent/Makefile (added): add .sln and
Makefile
* MMDAgent/Plugin_LookAt/Makefile.mingw (added),
MMDAgent/Plugin_VIManager/Makefile.carbon (added),
MMDAgent/Library_GLFW/Makefile.x11 (added),
MMDAgent/Library_PortAudio/Makefile.carbon (added),
MMDAgent/Plugin_Variables/Makefile.x11 (added),
MMDAgent/Plugin_Audio/Makefile.mingw (added),
MMDAgent/Library_libpng/Makefile (added),
MMDAgent/Plugin_VIManager/Makefile.x11 (added),
MMDAgent/Library_hts_engine_API/Makefile (added),
MMDAgent/Library_GLee/Makefile (added),
MMDAgent/Library_Julius/Makefile.carbon (added),
MMDAgent/Library_Julius/Makefile.x11 (added),
MMDAgent/Plugin_WindowController/Makefile.mingw (added),
MMDAgent/Plugin_Julius/Makefile.mingw (added),
MMDAgent/Library_JPEG/Makefile (added),
MMDAgent/Plugin_LookAt/Makefile.carbon (added),
MMDAgent/Library_PortAudio/Makefile.mingw (added),
MMDAgent/Plugin_Open_JTalk/Makefile.x11 (added),
MMDAgent/Library_MMDFiles/Makefile.x11-euc-jp (added),
MMDAgent/Library_Open_JTalk/Makefile.carbon (added),
MMDAgent/main/Makefile.x11-euc-jp (added),
MMDAgent/Plugin_LookAt/Makefile.x11 (added),
MMDAgent/Plugin_Audio/Makefile.carbon (added),
MMDAgent/Library_MMDFiles/Makefile (added),
MMDAgent/main/Makefile.carbon (added),
MMDAgent/Plugin_Variables/Makefile.carbon (added),
MMDAgent/Library_Open_JTalk/Makefile.mingw (added),
MMDAgent/Plugin_Julius/Makefile.carbon (added),
MMDAgent/main/Makefile.x11-utf-8 (added),
MMDAgent/Library_MMDFiles/Makefile.x11-utf-8 (added),
MMDAgent/Plugin_Julius/Makefile.x11 (added),
MMDAgent/Library_PortAudio/Makefile.x11 (added),
MMDAgent/Library_GLFW/Makefile.mingw (added),
MMDAgent/main/Makefile.mingw (added),
MMDAgent/Plugin_Variables/Makefile.mingw (added),
MMDAgent/Plugin_VIManager/Makefile.mingw (added),
MMDAgent/Plugin_Open_JTalk/Makefile.carbon (added),
MMDAgent/Library_Bullet_Physics/Makefile (added),
MMDAgent/Library_Julius/Makefile.mingw (added),
MMDAgent/Library_MMDAgent/Makefile (added),
MMDAgent/Library_Open_JTalk/Makefile.x11 (added),
MMDAgent/Plugin_Open_JTalk/Makefile.mingw (added),
MMDAgent/Library_zlib/Makefile (added),
MMDAgent/Library_GLFW/Makefile.carbon (added): add sample
Makefiles
2011-08-02 [r150] uratec:
* MMDAgent/Library_MMDFiles/src/include/MMDFiles_utils.h,
MMDAgent/Library_MMDAgent/src/lib/PMDObject.cpp,
MMDAgent/Library_MMDAgent/src/lib/ScreenWindow.cpp (added),
MMDAgent/Library_MMDFiles/src/lib/PMDIK.cpp,
MMDAgent/Library_MMDFiles/src/include/PMDBone.h,
MMDAgent/Library_MMDAgent/include/Render.h,
MMDAgent/Library_MMDAgent/src/lib/TextRenderer.cpp,
MMDAgent/Library_MMDAgent/src/include/MMDAgent.h,
MMDAgent/Library_MMDAgent/src/lib/Screen.cpp (removed),
MMDAgent/Library_MMDFiles/include/MMDFiles_utils.h,
MMDAgent/Plugin_Variables/Plugin_Variables.vcproj,
MMDAgent/Plugin_Variables/Variables.cpp,
MMDAgent/Plugin_VIManager/VIManager_Logger.cpp,
MMDAgent/Plugin_VIManager/VIManager.cpp,
MMDAgent/Library_MMDAgent/src/lib/Message.cpp (added),
MMDAgent/Library_MMDAgent/src/lib/LogText.cpp,
MMDAgent/Plugin_WindowController/Plugin_WindowController.vcproj,
MMDAgent/Library_MMDAgent/lib/MMDAgent.lib (removed),
MMDAgent/Library_MMDAgent/src/include/ScreenWindow.h (added),
MMDAgent/Library_MMDFiles/src/lib/VMD.cpp,
MMDAgent/Library_MMDAgent/lib/MMDAgent_D.lib (removed),
MMDAgent/Library_MMDAgent/src/include/TextRenderer.h,
MMDAgent/Plugin_Audio/Audio_Manager.cpp,
MMDAgent/Library_MMDFiles/include/MMDFiles.h,
MMDAgent/Plugin_Variables/Plugin_Variables.cpp,
MMDAgent/Library_MMDAgent/include/PMDObject.h,
MMDAgent/main/resource.h (removed),
MMDAgent/Library_MMDFiles/src/lib/AlignedMotionState.h,
MMDAgent/Plugin_Julius/Plugin_Julius.cpp, MMDAgent/main/main.icns
(added), MMDAgent/Library_MMDAgent/src/lib/Option.cpp,
MMDAgent/Library_MMDFiles/src/lib/SystemTexture.cpp,
MMDAgent/Plugin_VIManager/VIManager_Thread.cpp,
MMDAgent/Plugin_Open_JTalk/Open_JTalk_Manager.h,
MMDAgent/Library_MMDAgent/src/lib/MMDAgent_utils.cpp,
MMDAgent/main/main.rc,
MMDAgent/Library_MMDAgent/src/lib/Render.cpp,
MMDAgent/Plugin_Audio/Plugin_Audio.cpp,
MMDAgent/Library_MMDAgent/src/lib/LipSync.cpp,
MMDAgent/Plugin_WindowController/Plugin_WindowController.def
(removed), MMDAgent/Plugin_VIManager/Plugin_VIManager.vcproj,
MMDAgent/Plugin_LookAt/Plugin_LookAt.vcproj,
MMDAgent/main/main.ico,
MMDAgent/Library_MMDFiles/include/PMDBone.h,
MMDAgent/Plugin_Julius/Julius_Logger.cpp,
MMDAgent/Library_MMDAgent/src/include/PMDObject.h,
MMDAgent/Library_MMDFiles/src/lib/PMDConstraint.cpp,
MMDAgent/Library_MMDAgent/src/include/Option.h,
MMDAgent/Library_MMDAgent/src/lib/MMDAgent.cpp,
MMDAgent/Library_MMDAgent/src/include/MMDAgent_utils.h,
MMDAgent/Library_MMDFiles/include/PMDModel.h,
MMDAgent/Library_MMDAgent/include/Option.h,
MMDAgent/Library_MMDAgent/src/lib/Stage.cpp,
MMDAgent/Plugin_Open_JTalk/Open_JTalk_Thread.cpp,
MMDAgent/Library_MMDAgent/src/include/Message.h (added),
MMDAgent/Library_MMDAgent/include/MMDAgent_utils.h,
MMDAgent/Plugin_Open_JTalk/Open_JTalk_Manager.cpp,
MMDAgent/Plugin_Open_JTalk/Plugin_Open_JTalk.def (removed),
MMDAgent/Library_MMDFiles/include/MotionController.h,
MMDAgent/Library_MMDAgent/include/Timer.h,
MMDAgent/main/main.vcproj,
MMDAgent/Library_MMDFiles/Library_MMDFiles.vcproj,
MMDAgent/Plugin_LookAt/Plugin_LookAt.def (removed),
MMDAgent/Plugin_VIManager/Plugin_VIManager.def (removed),
MMDAgent/Plugin_Julius/Julius_Thread.cpp,
MMDAgent/Plugin_VIManager/VIManager_Thread.h,
MMDAgent/Plugin_Variables/CountDown_Thread.cpp,
MMDAgent/Plugin_Open_JTalk/Open_JTalk.h,
MMDAgent/Plugin_Julius/Plugin_Julius.vcproj,
MMDAgent/Library_MMDFiles/src/include/MMDFiles.h,
MMDAgent/Library_MMDAgent/include/MMDAgent.h,
MMDAgent/Library_MMDFiles/src/lib/PMDBone.cpp,
MMDAgent/Plugin_Audio/Audio_Thread.cpp,
MMDAgent/Plugin_Julius/Julius_Logger.h, MMDAgent/main/main.cpp,
MMDAgent/Library_MMDAgent/src/lib/Plugin.cpp,
MMDAgent/Library_MMDFiles/lib/MMDFiles.lib (removed),
MMDAgent/Library_MMDAgent/src/include/Screen.h (removed),
MMDAgent/Library_MMDAgent/include/ScreenWindow.h (added),
MMDAgent/Library_MMDAgent/src/include/Timer.h,
MMDAgent/Plugin_Audio/Plugin_Audio.vcproj,
MMDAgent/Library_MMDFiles/src/lib/PMDFace.cpp,
MMDAgent/Library_MMDFiles/lib/MMDFiles_D.lib (removed),
MMDAgent/Library_MMDFiles/src/lib/PMDModel_render.cpp,
MMDAgent/Library_MMDFiles/src/lib/PMDModel.cpp,
MMDAgent/Plugin_WindowController/Plugin_WindowController.cpp,
MMDAgent/Library_MMDAgent/include/TextRenderer.h,
MMDAgent/Plugin_Open_JTalk/Open_JTalk_Thread.h,
MMDAgent/Library_MMDAgent/src/include/BoneController.h,
MMDAgent/Library_MMDAgent/include/Screen.h (removed),
MMDAgent/Plugin_Variables/Plugin_Variables.def (removed),
MMDAgent/Plugin_Open_JTalk/Plugin_Open_JTalk.vcproj,
MMDAgent/Library_MMDFiles/src/lib/MotionController.cpp,
MMDAgent/Plugin_Open_JTalk/Open_JTalk.cpp,
MMDAgent/Library_MMDAgent/include/Message.h (added),
MMDAgent/Library_MMDAgent/src/include/Plugin.h,
MMDAgent/Library_MMDAgent/src/lib/Timer.cpp,
MMDAgent/Library_MMDFiles/src/lib/PMDRigidBody.cpp,
MMDAgent/Plugin_Julius/Plugin_Julius.def (removed),
MMDAgent/Library_MMDAgent/include/BoneController.h,
MMDAgent/Plugin_Julius/Julius_Thread.h,
MMDAgent/Library_MMDFiles/src/lib/MMDFiles_utils.cpp,
MMDAgent/Plugin_Variables/CountDown_Thread.h,
MMDAgent/Plugin_Variables/Variables.h,
MMDAgent/Library_MMDFiles/src/include/PMDModel.h,
MMDAgent/Plugin_VIManager/VIManager.h,
MMDAgent/Library_MMDAgent/include/Plugin.h,
MMDAgent/Plugin_Open_JTalk/Plugin_Open_JTalk.cpp,
MMDAgent/Plugin_Audio/Plugin_Audio.def (removed),
MMDAgent/Library_MMDFiles/src/lib/BulletPhysics.cpp,
MMDAgent/Library_MMDFiles/src/lib/AlignedMotionState.cpp,
MMDAgent/Library_MMDFiles/src/lib/PMDModel_parse.cpp,
MMDAgent/Library_MMDFiles/src/include/MotionController.h,
MMDAgent/Plugin_Audio/Audio_Thread.h,
MMDAgent/Plugin_VIManager/Plugin_VIManager.cpp,
MMDAgent/Library_MMDAgent/src/include/Render.h,
MMDAgent/Plugin_LookAt/Plugin_LookAt.cpp,
MMDAgent/Plugin_Audio/Audio_Manager.h,
MMDAgent/Library_MMDAgent/Library_MMDAgent.vcproj,
MMDAgent/Library_MMDFiles/src/lib/PMDTexture.cpp: fix many bugs.
replace OS-dependent code with GLFW. add bone skeleton view by B
key. add VALUE_GET command and VALUE_EVENT_GET event. improve
timer precision. remove some OS-dependent functions.
2011-08-02 [r148-149] uratec:
* MMDAgent/Library_Julius/src/libsent/src/adin/pa/dsound_wrapper.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/ringbuffer.h
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_unix_solaris.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_convert.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/dsound_wrapper.h
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_host.h
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_win_wmme.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_unix.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pablio.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_unix.h
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/portaudio.h
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pablio.h
(removed), MMDAgent/Library_Julius/lib/Julius.lib (removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_dsound.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_trace.c
(removed), MMDAgent/Library_Julius/lib/Julius_D.lib (removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_trace.h
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_lib.c
(removed),
MMDAgent/Library_Julius/src/libsent/src/adin/pa/pa_unix_oss.c
(removed), MMDAgent/Library_Julius/Library_Julius.vcproj,
MMDAgent/Library_Julius/src/libsent/src/adin/pa/ringbuffer.c
(removed): remove old source code in Julius
* MMDAgent/Library_GLFW/src/support/msvc90/GLFWDLL.vcproj (added),
MMDAgent/Library_GLFW/src/support/d/examples/Makefile (added),
MMDAgent/Library_GLFW/src/examples/Makefile.carbon (added),
MMDAgent/Library_GLFW/src/support/d/lib/glu32.def (added),
MMDAgent/Library_GLFW/src/lib/thread.c (added),
MMDAgent/Library_GLFW/src/readme.html (added),
MMDAgent/Library_GLFW/src/lib/x11/x11_window.c (added),
MMDAgent/Library_GLFW/src/compile.sh (added),
MMDAgent/Library_GLFW/src/lib/cocoa/platform.h (added),
MMDAgent/Library_GLFW/src/support/msvc90/triangle.vcproj (added),
MMDAgent/Library_GLFW/src/lib/carbon/carbon_enable.c (added),
MMDAgent/Library_GLFW/src/docs/Makefile (added),
MMDAgent/Library_GLFW/src/lib/carbon/libglfw.pc.in (added),
MMDAgent/Library_GLFW/src/examples/pong3d_menu.tga (added),
MMDAgent/Library_GLFW/src/support/msvc90/defaults.vcproj (added),
MMDAgent/Library_GLFW/src/lib/win32/Makefile.win32.cross-mgw
(added), MMDAgent/Library_GLFW/src/tests/dynamic.c (added),
MMDAgent/Library_GLFW/src/support/pascal/Triangle.dpr (added),
MMDAgent/Library_GLFW/src/lib/internal.h (added),
MMDAgent/Library_GLFW/src/lib/win32/Makefile.win32.ow (added),
MMDAgent/Library_GLFW/src/examples/Makefile.win32.cross-mgw
(added), MMDAgent/Library_GLFW/src/lib/win32/win32_init.c
(added), MMDAgent/Library_GLFW/src/lib/x11/x11_enable.c (added),
MMDAgent/Library_GLFW/src/support/d/examples/mtbench.d (added),
MMDAgent/Library_GLFW/src/support/d/imports/gl.d (added),
MMDAgent/Library_GLFW/src/lib/carbon/carbon_fullscreen.c (added),
MMDAgent/Library_GLFW/src/tests/iconify.c (added),
MMDAgent/Library_GLFW/include/GL/glfw.h (added),
MMDAgent/Library_GLFW/src/support/msvc90/particles.vcproj
(added), MMDAgent/Library_GLFW/src/tests/getopt.c (added),
MMDAgent/Library_GLFW/src/support/d/examples/particles.d (added),
MMDAgent/Library_GLFW/src/lib/input.c (added),
MMDAgent/Library_GLFW/src/lib/win32/Makefile.win32.lcc (added),
MMDAgent/Library_GLFW/src/support/msvc90/pong3d.vcproj (added),
MMDAgent/Library_GLFW/src/examples/pong3d.c (added),
MMDAgent/Library_GLFW/src/tests/getopt.h (added),
MMDAgent/Library_GLFW/src/lib/x11/x11_fullscreen.c (added),
MMDAgent/Library_GLFW/src/support/d/lib/opengl32.def (added),
MMDAgent/Library_GLFW/src/compile.bat (added),
MMDAgent/Library_GLFW/Library_GLFW.vcproj (added),
MMDAgent/Library_GLFW/src/tests (added),
MMDAgent/Library_GLFW/src/support/msvc90/mipmaps.vcproj (added),
MMDAgent/Library_GLFW/src/tests/joysticks.c (added),
MMDAgent/Library_GLFW/src/support/msvc100 (added),
MMDAgent/Library_GLFW/src/support/d/lib (added),
MMDAgent/Library_GLFW/src/support/d/examples/mipmaps.d (added),
MMDAgent/Library_GLFW/src/examples/heightmap.c (added),
MMDAgent/Library_GLFW (added),
MMDAgent/Library_GLFW/src/lib/win32/win32_time.c (added),
MMDAgent/Library_GLFW/src/support/msvc90/fsaa.vcproj (added),
MMDAgent/Library_GLFW/src/lib/x11/x11_glext.c (added),
MMDAgent/Library_GLFW/src/examples (added),
MMDAgent/Library_GLFW/src/lib/win32/win32_thread.c (added),
MMDAgent/Library_GLFW/src/include (added),
MMDAgent/Library_GLFW/src/docs/cleanup.bat (added),
MMDAgent/Library_GLFW/src/examples/pong3d_winner1.tga (added),
MMDAgent/Library_GLFW/src/support/msvc90/fsinput.vcproj (added),
MMDAgent/Library_GLFW/src/support/d/examples/keytest.d (added),
MMDAgent/Library_GLFW/src/lib/cocoa/cocoa_joystick.m (added),
MMDAgent/Library_GLFW/src/lib/cocoa (added),
MMDAgent/Library_GLFW/src/lib/win32/glfwdll_mgw2.def (added),
MMDAgent/Library_GLFW/src/examples/boing.c (added),
MMDAgent/Library_GLFW/src/support/msvc100/GLFW.sln (added),
MMDAgent/Library_GLFW/src/examples/gears.c (added),
MMDAgent/Library_GLFW/src/lib/carbon/Makefile.carbon.universal
(added), MMDAgent/Library_GLFW/src/support/d/examples/wave.d
(added), MMDAgent/Library_GLFW/src/support/msvc90/events.vcproj
(added), MMDAgent/Library_GLFW/src/support/d/imports/glu.d
(added), MMDAgent/Library_GLFW/src/tests/tearing.c (added),
MMDAgent/Library_GLFW/src/tests/accuracy.c (added),
MMDAgent/Library_GLFW/src/Makefile (added),
MMDAgent/Library_GLFW/src/support/msvc90/mtbench.vcproj (added),
MMDAgent/Library_GLFW/src/lib/carbon/carbon_init.c (added),
MMDAgent/Library_GLFW/src/lib/joystick.c (added),
MMDAgent/Library_GLFW/src/lib/x11/x11_joystick.c (added),
MMDAgent/Library_GLFW/src/lib/x11/platform.h (added),
MMDAgent/Library_GLFW/src/tests/Makefile.x11.in (added),
MMDAgent/Library_GLFW/src/support/d/imports (added),
MMDAgent/Library_GLFW/src/tests/fsaa.c (added),
MMDAgent/Library_GLFW/src/support/msvc90/GLFW.vcproj (added),
MMDAgent/Library_GLFW/src/support/pascal/glfw.pas (added),
MMDAgent/Library_GLFW/src/lib/cocoa/cocoa_window.m (added),
MMDAgent/Library_GLFW/src/tests/peter.c (added),
MMDAgent/Library_GLFW/src/tests/Makefile.cocoa (added),
MMDAgent/Library_GLFW/src/lib/carbon/carbon_glext.c (added),
MMDAgent/Library_GLFW/src/examples/mthello.c (added),
MMDAgent/Library_GLFW/src/examples/triangle.c (added),
MMDAgent/Library_GLFW/src/lib/win32/Makefile.win32.mingw (added),
MMDAgent/Library_GLFW/src/examples/Makefile.x11.in (added),
MMDAgent/Library_GLFW/src/include/GL/glfw.h (added),
MMDAgent/Library_GLFW/src/tests/reopen.c (added),
MMDAgent/Library_GLFW/src/examples/Makefile.win32.mingw (added),
MMDAgent/Library_GLFW/src/lib/carbon/carbon_time.c (added),
MMDAgent/Library_GLFW/src/lib/cocoa/cocoa_enable.m (added),
MMDAgent/Library_GLFW/src/tests/Makefile.win32.cygwin (added),
MMDAgent/Library_GLFW/src/lib/stream.c (added),
MMDAgent/Library_GLFW/src/support/d/lib/makefile (added),
MMDAgent/Library_GLFW/src/lib/carbon/carbon_thread.c (added),
MMDAgent/Library_GLFW/src/lib/cocoa/libglfw.pc.in (added),
MMDAgent/Library_GLFW/src/tests/events.c (added),
MMDAgent/Library_GLFW/src/docs (added),
MMDAgent/Library_GLFW/src/lib/cocoa/Makefile.cocoa (added),
MMDAgent/Library_GLFW/src/docs/glfwdoc.sty (added),
MMDAgent/Library_GLFW/src/lib/cocoa/cocoa_fullscreen.m (added),
MMDAgent/Library_GLFW/src/examples/Makefile.win32.cygwin (added),
MMDAgent/Library_GLFW/src/support/d/lib/glfwdll.def (added),
MMDAgent/Library_GLFW/src/lib/window.c (added),
MMDAgent/Library_GLFW/src/examples/mipmaps.tga (added),
MMDAgent/Library_GLFW/src/support/msvc100/GLFW.vcxproj (added),
MMDAgent/Library_GLFW/src/support/d (added),
MMDAgent/Library_GLFW/src/lib/x11/x11_thread.c (added),
MMDAgent/Library_GLFW/src/tests/Makefile.win32.cross-mgw (added),
MMDAgent/Library_GLFW/src/examples/wave.c (added),
MMDAgent/Library_GLFW/src/examples/listmodes.c (added),
MMDAgent/Library_GLFW/src/support/msvc90/mthello.vcproj (added),
MMDAgent/Library_GLFW/src/lib/win32/win32_joystick.c (added),
MMDAgent/Library_GLFW/src/tests/fsinput.c (added),
MMDAgent/Library_GLFW/src/support (added),
MMDAgent/Library_GLFW/src/lib/enable.c (added),
MMDAgent/Library_GLFW/src/docs/GLFWReference.pdf (added),
MMDAgent/Library_GLFW/src/docs/glfwug.tex (added),
MMDAgent/Library_GLFW/src/examples/pong3d_title.tga (added),
MMDAgent/Library_GLFW/src/lib/carbon/platform.h (added),
MMDAgent/Library_GLFW/src/support/msvc90/tearing.vcproj (added),
MMDAgent/Library_GLFW/src/lib/fullscreen.c (added),
MMDAgent/Library_GLFW/src/support/d/examples/pong3d.d (added),
MMDAgent/Library_GLFW/src/support/msvc90/accuracy.vcproj (added),
MMDAgent/Library_GLFW/src/tests/Makefile.carbon.universal
(added), MMDAgent/Library_GLFW/src/lib/carbon/Makefile.carbon
(added),
MMDAgent/Library_GLFW/src/support/msvc100/GLFWDLL.vcxproj
(added), MMDAgent/Library_GLFW/src/tests/defaults.c (added),
MMDAgent/Library_GLFW/include (added),
MMDAgent/Library_GLFW/src/examples/Makefile.win32.lcc (added),
MMDAgent/Library_GLFW/src/support/msvc90 (added),
MMDAgent/Library_GLFW/src/lib/win32/win32_glext.c (added),
MMDAgent/Library_GLFW/src/examples/getopt.c (added),
MMDAgent/Library_GLFW/src/support/d/examples/listmodes.d (added),
MMDAgent/Library_GLFW/src/lib/x11/x11_keysym2unicode.c (added),
MMDAgent/Library_GLFW/src/docs/readme.txt (added),
MMDAgent/Library_GLFW/src/lib/win32/libglfw.pc.in (added),
MMDAgent/Library_GLFW/src/support/d/examples/triangle.d (added),
MMDAgent/Library_GLFW/src/examples/Makefile.carbon.universal
(added), MMDAgent/Library_GLFW/src/examples/getopt.h (added),
MMDAgent/Library_GLFW/src/support/pascal/mipmaps.dpr (added),
MMDAgent/Library_GLFW/src/support/msvc90/peter.vcproj (added),
MMDAgent/Library_GLFW/src/support/pascal (added),
MMDAgent/Library_GLFW/src/lib/x11 (added),
MMDAgent/Library_GLFW/src/examples/mtbench.c (added),