-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlist.txt
5739 lines (5739 loc) · 464 KB
/
list.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
07d125c99f1c0d5425fafde9b48d337d6d420800
313201db2d763a3e347a22b89be678b6d0246499
c4c5ddbc0b3079d93d060ed287a697cdac52d002
b1ac31a93c6463d0555bdce9fc6c28501d2ef426
c42a548a944ccb2719149bfa8ec33625ee4b28a8
2b79b82e20b9986847a570ca1256ce7830481dd2
59b4e96a4a8a2c6e39acb1d31c69a06d04400d91
82b523f6a05274dc5b737ac7cb0b4d8e2d4f8d88
c2bc0d5b09f20fb1d66e3c488256025195b4b072
50e7d8f43dd6a13073683e42e55cdd830c8831f6
72cc5e9f95107e70df4d2dfe70f085017bacf1e5
531a298d35d37f387cdcd06b4896195678ca5bf0
50da59d8944aee3c7b3dfacbeb39c7807b18f5cf
cba901c55d6d013cf56774bc6701cc3baf15e461
a23bd95f59b039ee507ed9a276410c15bbb56dec
e8da7c6cc7e189e381b49188eb837b82285cff77
8c5f90ac34f6cef676b035dc1f01d6e5f23d37b5
9a4bd80c1017385e3e80f94cd87eb2dcba3e6bab
ed8e282df6b3af8be257c4895958c09f915e6a03
bb788138aa3bdd639ef876b66edef2c96c1464b2
d532b649922be72b7d5e0e456dd54d48ae82e407
214214ea1314a052dcd575dd76b3caad2d197f90
80e1ed8dd29b082e023bb43f13ad3f67bc114f03
d1636cc36b5723c32f50e8eec38cea278ae1b9d6
247565f50423bd1bbe907db6d9c280f00f95dfea
5123d48620296398dfaa47daa877986af55d7bff
b9ee4a614a940dacb093c7b661b33f077a00bca4
5dd69da2c0925e377d2277f7e6167ccaf424b101
1aedc0ed263f66c9c21d0532ea646e4076d2bf9c
f4a4c96d6fa8445aa50a9184d657279cd035e0a6
561cb59d181f982c6a6282e031e73cdce621361a
0d04e61f831c587077dcecbc50f865dea9b55b15
b5cc15aefb33aa9dfca4b2e6da18465f716c305a
14610e2ef40faf6d812b77bfac77d87dfb98a0d2
2b0607dba76f8e47d48910b57f24578e73eb134b
f62711ec2dced0ff345405a57d869237c0e71dcf
0db1346072115369c1e45de849337f772acea8a6
f1c4deace45fa44fa9aea07c83dd5f205afa07e1
9c81c476b22f65a206fe456d0725290ed23216a1
a33a3af1295095b80816262f9dd51cdb3ba48524
8f71da97ff9e8ff1b834675063b87b9541049cd5
c9f64c6798e33ec3d67379a323b1d6ef9518db72
9ed39808ad5bc8bdd3b5fe6acf0b0b99cabb4f61
321468c62813f29e86ce687da1200dfc9c09b1ef
8e04eb36bf99253cd0a91edc4608d87a267a7c55
4eff79983c336ce0d9b305f018a7c4010d5fbc0d
99ff4cba05b5be370687d2339bad3c7ca4f3f77d
8ae59c611f35dc95b8802b68543aec24a3331bae
ceedd32ead656aa1901c722ef15aa232f1242642
67bddb6dd755eaf73689b334533ae2c2543f4231
9659e6676b99d4beb9b86b64b72c114a462b4030
f04fb450f6b7692df0c448fcec3d8cc0d9108008
b1cb2b22bd04ac9acd789f751d10599664a3d494
52e149a640f89ecd1f92ae63ef6805582e6ac951
e83f183512c3a5543e52309571f5d260804a08f7
25b4f2035dc5c0ee1a27cfb639186e35efed9eed
f449a03a84dbc08dce48a221a07b991989c6b363
e953301bc2643dfea99cfe5b1def34ddabb81890
27f464154c5b66245823cc316d83f220bb7c05af
798c4d17568296feda5da97346b019b648df4a3e
ec3266414177a4939a9cb4adb55373568728936d
9cbac66b891781946c3bc9a42ec4ba8419e2dd12
769a3c29b4683c05e10f5ccc91bcbc17ff6e3efc
28fbae7ebf33006849b93c72963a38f0fd303627
caae64a55dc286682c6cf181c5f41a485c14d409
9c918dd54379c5b61f5c188f63287f76e0c06032
100c2426438b96133648422cb6a5e771c0251728
33a44eddd6651524e9f75eeae23f98eacd9bbb65
2c43f6c2e30a50dc85d85105b9083cb86f01d22b
7e9bbde99cc54e00f325e0ad7827fcc2e06bc518
dd63fb51f139b767ea5eda87653c0003e98ed028
589239bde123e0e19a8d9a97b5fc716a1a356c74
6d9b15190daf40a071cc7459677440b16e2fe4ce
c0a0a0a5666b873b7ce7129f14febafe02eafd58
65ef57a245d224d70ec23e71d3f2d6346778f29c
f955e5044c35540caa74c0d1e3b0c93e010fd136
961255fa3adcedeca15709b2968031cd3f5df837
c4783a3c1bd354e1df7e882395a6d3301bf336ed
7817350dd53fd4c2c72710384795674bb00909fb
c7e4e2572d485a314fa1feb3b814f966e4c718f0
ad74546afbb2a8b5171a11a2fc93a457a58a36b9
4e54a8c5c6581e74fa7369818d0c710818d442e0
ce885c3e197f1a4deb18118f322c0322fcc6b9e1
91c55e3c2fc6390591c9fc8cf04bbbfd76966713
47afe10c0edf200d404f4143a265769d463206fb
635f61c371a17997a5165a77806d02c727b9f90b
9e488339860a710a12f7d494176da2d6e3e8c493
642affa329a068348393c5ccfe182371bc7a5430
06c306a8bc7013140a8fba8b1c410d087cfc60cf
31cd43be04655e3921b72ceb49afe2e020e4e00f
76892215815527a8430771058ff6e88eba6cdd62
58271c8aaafdee53ae67aa33ff0334aeb321a537
b35e710731660f02cf16b79c7edc14e5d2d0cee4
8d8254d0fd1499e2f59e8f87f6f94ce3820b6fd8
4ea9a82ccecf30de9ff4ce0911af1c02b3589c60
a9e21916966fbba21448998bf428dbc6a15a3cac
dda51d84675c8560d0cf8c72f7f03dcdefc7ba2a
a3b48f968536aab096163bd3162043f22f7c6f41
92b8a945c2fbb45e542be984bc2e40f22b78cd9f
f466568883c5f0026626a41ec18276da1e3d4571
665a5042b50f65abc47fca4fe6e74cea32115f28
da8c8aad8c55e3b50f825d7b0b4ce94e494c32e9
ff52e897981da4ef1d77d32f94f795fae38c8a11
f2caa92bb0998e3451a18ceb229b7951f13324b1
b52fe55890795dad745b11db726920d1150ddda1
64abf5caaf79abafac2ed9caec8b2d9a73417816
f18b50ebce671276871824e281fd55dcdf800e06
f66fc7cc1d6559726b3e2a189884328486a7e3cd
c22e70f88771bc4bf6c1e25bac3fc919fe4cd267
ef5481b87de006912a71b3305c7df6d58bca8ff2
0040d09aba3a638a3483e8fac9be92be58a2260b
104b95eff03b15f68d7315c04566ecd454520552
0daf98a51936310f68b9c00f353661861f93446d
0914f0e90c087e839fc08bf9a86a45e06330b259
c5b2112b952e36a9d3d94c9b227b74698815127e
941b259a3db9d6245c36355c7357a05fdc77b104
1bdabd06ea4b5dee12f9b9d86ed132aaca00705a
db2ea57bfa30c87f905f815d56fe58c0b23d3b34
36a53702df13f87f83952574f297e113e61cdcb3
836ba2012ed609a13083d90c80ed78d8b2012792
32850220f8c67273ddd984838c5171e711b40167
df3bc5af67b0fbf11112b520acedd10b5fc78813
fdf46b826e8385861b15734d12a25d299cbb2bb2
0858d0f32b0e8d65c9ab35fa105e4cf4dc6d0742
a4d9147486bc2ae981ab786e8cce3e3c3a6eec07
765098375dc6d221edecedc26644c0e5a6abd60b
5172d7e071a3b1775718262d426368b198a815e4
5da186a50b15867e5da6d9ea8a731c0ce5505c2e
10de9b8e4985c5f38fdcae01c88f80f24e9c3eb8
105f3b1005ad1e881e27fbb6df7273491e558204
5010e0b5846137a77d8e0a33327d974b6e7a8e8b
b15ed37c8774a06899165cba9e8f1789ac14883d
28f13f04fefc4a371dd4d22f5f3f48f524d5e105
3305c88d1f35cdc9b865f13586ffb4f1210c7eb4
31ef96a77152dc898db96f4badabe50b03e28cc0
6e3efa4442a334b69ab7cf48aa29331e99cbe9e4
2a4854725567b3cd1db3d4d324c47a70226f66a3
480ad334cf7a7dc892f4d3697e4312fc926b9b10
df6e94f381043a86ac2f4775c7ad1cb2ffaff233
1db9f563a39db512dad07a2c742cf9343cea2e6c
f0bf92d5c01b06a2290f67213c9d7fd858a53c73
bfe643907c559559d8ac2409097ef12dfdba6489
e62e6ff058cb393d9d5a3906ec35b91b80289aca
0052fbfdbdc8d0b1049684abd01456e97dcb7468
613ba27fada557c7b51fe3be53e9c762b0ce98c6
d855916b92a8a8f2b06e44c81617b5c5fd42a9f0
34f4192cd69047e37413569d1678dbc062914b17
54cc1000396f09e64d00931eb62ec537a2e58f37
2d9c2be399766bb8644d6a1848b8c641609eaadf
98c9b1b0481e9d87b7f88ef31875322cb519add9
ffb0dbee28df91ad95cb5d14b67c307fcc2e6656
d0bb2c954771614d314f0262838741b58937a450
f92f27ebac49c1688a664449b04748a21b0c04ea
0e8559c47b2aa0afc87dcad9ab876cf8e28361d4
acfacf00ab544bf9ed666e86a7ef2971cd015282
691ad5f5ce0d922c90951014a150be83882c948f
1e85d24de74b0a579d3b6442528d18751d4177c0
3baf24501913ffebc163ab1c2827c9af4482e501
8c5fc5a65e5646b9f941158651361744f66dc610
e420d5c98afe8910612a3c9bc22264a109227500
51fbaf12b7db6d0ef20d94c80746d96f1c9330a7
39328159fd64502c2398a4fce38d1c8a9c88a1b2
891a2c58d1d9d948d7c8686a8f6f844375d579b5
9be79dfabe1ae0b5e7bdb9f2acc9aea311df84bd
48c6929a08fe42c05822bd5c18f67ebcebb7af91
6b4df92cab06f7b0115399f248055222b6658030
ab9b3607978c469aabc7026777180c93364474b4
115e112260c8f1a0375df9b2e4257083e05b3338
83a0c681dd40125f8f2750212dd983edd04c4300
0ccd4b5a1d7721d14d8d77c2dc311953cd29ff95
a487b1ad953cf2358f7037428d05b13062819976
fb231f607085be9a19c4462e97439260cc68cf67
9e8484a56dc92bdf9867d6bc10073520d68b586e
b050ee4b164b5634efbcc6fa379a1df59f4386b0
b170bf1396adda307361e3b776bd5e6c09c202db
a06fb8d42c5ff783f7a71ab2511d1d3de72ace73
99cd438e5f432a3f6b2416936290a23c69685705
414444bb9f53fc5cab4cb035514182993d76caf7
a455624756032c8eddb214c4f825fae860b3d1cb
cec51276823518b199c579aef4472d295f24b07c
e2f077d406d644445910bcaff53ec17ae0e51c99
a1daff3f2c013b16583157d225334d59ecbffa98
d54ae51324dcdbd46cf3163d6972eae2b09714d9
397f3c72461dbb27141196c7456f1ce0e7ad0b1a
6026630074e4a112b46cae275a9b93060fc2933f
81e1ace0486199468448b9733ee85391c284ff94
509dc3bab1877d9b3c05ad5f953c428bfdf2a00c
b91aa185ff7372e27c0d9ae5212e719dfc22e18d
868d31e0f4674955900217e54896887511f53d01
2cf1cd4f72e512828e741d0f13215496d6f6b7b4
5b3146dbddfe723b5546e82e1d01b7783a698be3
5edc9ff36fb586f569a2d06903a36f43eed336dc
0f88a3408cd2bf639abd6d2ff964d6fead8feba3
abcec894487e0951e01fc088ba5b7eb58a43f313
46e0dd10963416a2eef95bb3c6bf37ac37f5b49b
b398e96266b3fd8c1d02e82bd353ce130df5a11e
2fbb1683914729b6387185583a0272d37c209f66
00d126ca2962de3de59217b5d2b1ffc1d9c23a15
5ea54c55d8aee66825adff03cf77a18f4ff6be71
0030bad231ee1a66f7535b25d21bad643b56ab88
98c91e595b91156746840454542079f230a2c6a9
781d9ad7604018ba2da288741ba665772ed86546
ba6f765bbe1ba1d0fd9a9decdcfcc352efc55843
00dff41abc5d624050b8fe83d9faa0f8257c9511
b810b2146cd2a77626caf73681b3338d582412d1
2a313518853bf27120030bcb4a7d1026a6ed62ce
4239563b38b64d296d977b0c44cacfd4deea5784
c08721a19fe0201bf4979a50e6b3009a25da30c7
03123fadf0ed1ab62777c97432488fa52d3dacba
728fbab552bb9f051827d0c6d109d44ca50367a8
7cad0ecbd8a75e8affdfd16b0be1e6a679493b0d
b2ba412328a9d40547911840e012ea8ef5984901
394ffe0820caa3a12b49b6ca30d6f9e4cf608127
f77b8f2a2e531940f0feced0d984331219f7110b
97daf7f32a03088ca3d0801ca81196281e7da366
a9a0d19a98fa34128bf6a3df1de09ddffb9071a2
4c1030a530794fa2d0e275234a752a2308525252
383aea90aa2ebdcc6ccc9bd914e613426f689fab
0571ed172e4dfda24e389e22dd9cb898534286d9
11d6ff2ab126d919537666bd850294343a77cce3
41d3edf948f61a88b46e48f9e5f82e06b8452b97
256f7547b77c220f70f9bfff03099ad262952ef6
d214975439babbe8cf79d4326a34d5fbe2ced1ba
a810caf698f2240946642e542d2939b250be3566
beec5071dcf97b31ae835d710915743e4e3b9e32
6930b64c905aa4e52bb980a471db1d49669effff
f051b62974d283dd28055fabf1b1fa43c72e9411
6b4e086fe6101d0ce8405a7b5075ceafba46c5ca
29c713c012d87ff0c46d00902cc0852a4c756548
41eb568482def128fa64a9b550ece4b6f0748307
ecded6a95ffcc3bac5f8df33a5b260bebf747801
cecbe388ab7c3685b9798fbe4bfa7658617efda0
1235808f1a1b697d1c633b7920fad53840694c10
b6ce1574e088a17f064e97775a8e8600a28cb1c5
a1cb29feadeb0c09259b65a27d362fdb2a0779aa
20d33e6bf1cfae78c68b4ba58492535db8f22601
f90e5a1601e7ef7fd4ee8e1c08c004f5185d22b8
7f297c9bb20fc89983ee64d623ea54a6c983cbc9
820c03795fb7590c851adc334b425208644b6177
c0e2ba3c5c226022df769cbf6fa7ccf8f01272ee
5e2534d97af9c1fe52dbbbb8d53ad7fd1c43d6bc
580002a7f9eb8dfd6e8268de90ebc69ab5571e41
fe7d117a5c4e9b330a10530dcd3b33a163fc0e6b
3cc900392a2b200c7a3e8f46cade9ae33b758ec7
1e9797e7078bdbe59242b92d32a8622ce872b77c
75d1bc4ea8f69ef39f711962a8a1e7f39a8f738f
3149e1d7f5bc91730a418049cee64c7e90011621
4d0c3ddc59b96c55f885e7145918f79e69949413
53778f91f6aa2589a16a088c0f3f22d675de51c4
a415f2c3d247c098b6c0a0e4bd6b74821d24197e
cda7c7bfe3d3461c0ae3b363931e6f2d4009f2e2
b2a8f0806961c235c0ff225037dfab8b28fa5832
70ee47db5f624bf8e374d20c9ae645da9a96fa76
cfc242feabcb5e0c41d1919efe94cacacfee6f0d
fef4dfc0541b5eb53c00f670f5a06b15197fc7e2
3a1d0a9788cab786ed92c6483792afada98caa0b
14e0540198e2f0b5da83d0bd96e5d28c3a6e859b
d2c62a92f20ca1e193993d018bfedf1dc1966cb3
fd76cddeffc06b0808eb09fdca70fa38c72733fa
46f9172ca32e26148ab94787ad9239b83ddd56d8
5da997c178102e203883887ae81aa16e70780487
53e9c77b06ad0989341c46e77af501d4598d8ded
d5d8baeebd3bf185ad72945e3ed712b9f813e943
295fb44deda9d80e5a8e197673b1d85bedee0494
9ffcc15c144b3596d717ccc4ce02c0664be8fbf3
626cbce7105f0ac9705f5f94443c5156d9fe681f
2b06c48f9a46eb159b7b1341ba1beb9bab721125
ce9a17271aaf9b9e0e2bf1db0453f7b626aa34db
6e49f8bd68e14c675fa0ed1431ad8ed72c7f8c9a
ce93fe5e42a1584b0dd787ffc44f521eaf744d4b
b627a8562bc7dbbd014e64945fd128e4636bfb9c
741932a6c30331433f5985a34b67b29d0babec1a
d918c1813e32d61a2dfe15e322412c22442aaeca
d5ea2b94fc028fe4ba7e167d982a28854f6c5505
d7ef6ec565a8d79003fc435ed6931c66c9ddb647
9711f873b29c237090ca78886d36b045863aa3f1
b4e236d86081e85c162f4269eb6fd2a418b3e198
aecbe6e72bc22af79058dbb80d591d818c059356
25136fa7ae7ae8b40d806f64e18e9c7fff425c96
4f20b853096578c35dfb97317eeee4f1a66f301c
0e4f32d589c161bc734dc5310868d3d46d3eb0a8
d4fbb72e5c0019ade67fc1065085a2e16e2a4e1b
08e1b6c2583bd30673f70fdb02482a03569a5c0e
1de6369b5a16786b93cc7d43d687040974a555cd
e8ba9a13db6adf10395d88bafdbf936f2ced5c6a
8eda61b25fd4043e7abe36de6069b00d69dbedd3
2080d19840cb96f1a492cf1d9aed55a2ccad6641
a29f9125eb54d999e6b58c43f075af4dea3bee57
ca9b6da9f4f03169b8cf718d738261d03d851498
54024cfe3d5c1b707bd1ce4d09f81a0f760d8589
cf752b66c6872ec2331f3aaf45c9924fc664f2b6
51bc6e941a56d5a51ddaeaffd70072b2ff0975a8
d0421254c8dc37ac3e3f2c8fca07c64178ed8f20
c64425aae74a9d60e93243b01232757b3de9176e
5c5483b6372fe835c5c8d19e8b812229960ac4bc
8038125826eaa80aa9fbca2daf9f04aad2e1e2ca
6bbee75b56e035dd0b265767942b4a140c364095
29bec3a99c0f9521d330e08342a985e07215df8a
b2f640de576c73090cfa299301887a404feef43d
068f753c830495bbae68421e22bbb98bb51d856b
2146a5d7bc28954cd4c462b8d78e02c96dadf76e
5084f4cad0fc357f20a03c4be0e2056ef83f216d
d6ddc25d478dc8b26f7b3d5f48cd55b99bab8cd2
4862ad413429d2a261fde5165f2849a657d8ee19
6c518dbcc7c6c71c0201025ac6605731a21e51c1
fdd8a04010a3dfda866847baaa9d9e1d5bfc2bb4
ae106c2c57f712e4c63e563b3c7a76963d19e2c5
1f3b97bf061ab506cc4b904881fc21c1cf79faa2
782ba7fb425f234a80c5c345c60c3a778ab215ee
7dbae69f12919ad7f94cbb0460fa3766ced167ff
8247db4728336e976db8ef1ddea3c8f8c59b8553
858d55079b0b8e8c9a7e6241dd6112fc745511cc
3214261fd06212dc570cc620eafc645f3ced4739
32fc89d68f3eb4be5d1fee2a9deb2595d2a05742
1d5fd6369c10bf53a31e638d5f4c13f27a01f116
5177c2ddb9ab3c50ef78e75c4997009777374ce0
cd16fe1005ad95db7e3b8ec90bf21b6e635c39a8
b4a6bad67778aa596f31be2c6cabba01ab309f48
2c160999de45e2c649c7789e82276f08879ba71e
439338e544659b9ee0c78ebcaa7b1f39e49d3239
9b25715465e7b17220def7e8625562637613c81e
c49b72c32bd7a488fee9f477877e6fe57f7006f9
fe1dfbe80a8277427b484f9233ccebdbb4b32e29
3ef600952d3d973fda97c862e0e057ec8ec6398b
11856aa4ba830c1dbcd139702996ee48d5703e41
3897775cff48c8ac6b1eec023c53b3d78f98c0c1
96ecf0c3c2da956e115e1782e6dffd0a8ddb30e0
7406083d67352357c0cd2317143c19e518fe8272
9736382544ea02033d02c6612cc25727c8b650ca
344983e3526da5a2cce7c821252a93b2c547a65a
8e7ad5c9262da9601d7be8dba8b6668222595488
c5abcddbdc74439e82e105e2c132ea9c2b7cb2eb
4a521c31db950fec95c6956c9cd6226922ceec5f
5400f579964539f100b8008f3315cd2ce9a3e930
98e3a6e5b97aeed6e2ea5f18c919b268bd94ff38
dfe0770424b2a19faf507a501ebfc23be8f54e7b .gitattributes
6cc198795c5eb08a078a6da7bcd144abeb3d9f53 .gitignore
fee80b289e1ea81e20990a9cc29ee70ec88c9d73 Game_Engine_Final
aa0d48a05cfcf7c86a87c20023202901549f6b5b Game_Engine_Final/Game Engine Final.docx
1ff111af01bd2ad5065e4be644e1aabe48c0d481 computer_graphics_and_applicatios_final
06f2e8634cc1df13be904838271502998cf3af0f computer_graphics_and_applicatios_final/Computer Graphics and Applications FINAL.docx
94461bdcfb5e6ed644376d347cbad7b8807073d9 computer_graphics_and_applicatios_final/opengl_textures
7d44ae86ba1cc3df687d742cc960f0d8761ed73d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures.sln
dafeede92970e8bc65c4faa477efbbe3503ba357 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures
b0a48b08709521ffb12a0323054fd6f8eb3a3db9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8
a8e6b952e620622c5b7c4e804bca3da4c34c3a6a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/BUGS.txt
694e58a09f009850b9ea7a1d617560d561a80200 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/COPYING.txt
8d92955a9e425db7adb3cdb76c268571d44e882e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/README-SDL.txt
431ba0e7484edaed9cf6b231ebaa2e2e589c1e08 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/README.txt
48fe2510acf094ef4171bfb8d820bc870447a33f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/WhatsNew.txt
d7cc7a3edff49557505edce5e84b81e4d63b315e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs
12fed7c94d904b4775953a2512a1809c498f227d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-android.md
db318602a92e78347be0fa1748fc62b821800c0c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-cmake.md
67b64fb6112999f19533b664f857ba4a01c1704c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-directfb.md
b9a58bce1dd12db13076b927be9ee0d31861e588 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-dynapi.md
9712084864f6766e3190fc444b602b885e51a790 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-emscripten.md
451afaef129d71d580e42b19d0363ab759ec705a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-gesture.md
2449d555db97bd6904b93dfd1c89d105705a197a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-hg.md
7627a3978868dcb6c70879f6d55fe4af00eb9619 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-ios.md
5274c60ef684e2e9c2eb78ae6f4103869aa1b555 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-linux.md
18d39518ef368cf262081362d71c23606415b005 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-macosx.md
4c9432b69bdf9d56d3d104675a1ec9905e4a827f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-nacl.md
511a05479c2b3aa942dafcbf9d51f15c12b4bc61 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-pandora.md
14454ec5d5c461b6e8c8e938bad4f4d47188f800 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-platforms.md
cf8ef397a35b90aa457959a60646e9752a11c020 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-porting.md
0acc93d4c8acd3fa9a80d5998c22ec237d6022e1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-psp.md
d64e7cb36ccf44d9dff4d940f6f667bb0d0c73f4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-raspberrypi.md
b6745acd46d18cd0e729e526edc25dcbc8e859ac computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-touch.md
9fc6454d178e737e51365c2f911a580f31b23c82 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-wince.md
71f968eebd82bb88bd0de219d5a269a3d884ac0a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-windows.md
35b7e6d872e079568c4f6b3d810517a28a68a7f7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README-winrt.md
f348113359fd1422518f6895057c65a11f11c3dd computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/README.md
baf1c98dec9d3350fa8dbe069543a1749380c456 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/docs/doxyfile
ce4b3f8d34a2a74f3ffc3f1364e372e86e22b185 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include
d48d9d4a0e234835ba0b32f899e68be07b8eed11 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL.h
b38f928ae14bb68e916bae1048a4c8648a1a20d8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_assert.h
b2287748c8f87973ef2aef5093812c0065b89725 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_atomic.h
d6ea689543c05e0a61992779c85faa0867ac314f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_audio.h
eb8322f0d0a181b364871c28df42010ead3f17b1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_bits.h
36a5ea76f0c52c4364cb5f156cdf7252c0441ecc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_blendmode.h
f28751ebb8ffe5c67f17ccab94f2a55165fea4c8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_clipboard.h
52a9ece161c4b813fef48dbc951a9dd9f70e3c70 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config.h
c57266c413081c253f3e5526e025e3cb8d1bf53c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config.h.cmake
8b3d20880be172c1d61c907652fbccda0d7deeae computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config.h.in
361bad8b775c7f03b4969bb4f0c2390630ef4f47 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_android.h
deea030466e3a19540272d59c5026200d68bfbcf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_iphoneos.h
9b098995299258f5f9c43956ebac4e9083124b44 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_macosx.h
f03f1ae3dd1afc12f8d4bb2c90eab3dfd697dacc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_macosx.h.orig
31127006c50c22850dc7bf3d2b7400b256964b42 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_minimal.h
ea62fe59ac6f0287a186da6bdd9b3b64f6106a2c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_pandora.h
28efb4c5c0c768daf7794930a24a54028a15f261 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_psp.h
2456c843fe563ac9375b95120da051c9707d01c6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_windows.h
24f9e17f2011ec7759c7886e9cc415a735adf5f3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_winrt.h
5bb845a0ccaf600cb121cb7700044deabf8f8507 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_config_wiz.h
8f60af6b4f37db685eb5b63dabdf0646c006ab1b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_copying.h
0812705309637b52df9ffe09d371ad5045185793 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_cpuinfo.h
d65ed437c33fe307657aca04f192de87e0ff55e9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_egl.h
ed0bf5ba8f94888115422d06601ff4200119a9e6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_endian.h
c0e46298e8ffdbc6cf6abc4381a7ba9e2dcf1a33 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_error.h
3d39e6a736c9002bb320f61ffbcf379e261325f2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_events.h
fa6a1fa6e7b2ad4b9e341f6cf71c4e7fca925586 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_filesystem.h
2e024be650634764a2b0227399b9733b664e67d5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_gamecontroller.h
b223d80d44c3debd2de55420aaf1e907d1a08919 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_gesture.h
e3a2bca5fb1983a66e6729b2b02962ff2abe0406 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_haptic.h
3834640f2dfbe51fc08027baf45a3de0adab2e46 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_hints.h
f3148a7e60e457b0a8626184a0e51470a4fdca84 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_image.h
f67772d713ed790971be8d42ee613cf090eb6179 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_joystick.h
87482317161a6e05324bf5ab769743b1a385b436 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_keyboard.h
d7d5b1dbcdefce3777ee48eddcc46853eba2e584 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_keycode.h
da56fb452779ee015da429caa8da746c985b0ee0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_loadso.h
e12b6588601712bd217578226f143941ff019cbb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_log.h
98558217fc23ea63118899e44a710b7ba934c720 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_main.h
b7be59d88f50ad7686b794ca13cd66f29e7ef557 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_messagebox.h
cbb8ae6b65ad8325c961f3fc664e6fd8a1bbfd6f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_mixer.h
d3c9f6156cba36ecff91929d7a7eda0784b4af69 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_mouse.h
ba4247ced8176dd98396d552536bc4646faa7841 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_mutex.h
ecd863f4ca873b55249601228efc5fc578aa4fb1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_name.h
253d9c93a96f875aa53a51a5a615d4d732d9926d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengl.h
cd3869fe7f1e56ea948f010d72b7b37bbd1d2abf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengl_glext.h
18dd984b3ed21bf5fd3bbfcf1a8a34fe58dfca6f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengles.h
6ccecf216572b4c9514bded0fd0a1c54690e57d8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengles2.h
c62fb0a547fee09b58c31f1c0471fa7414e465e3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengles2_gl2.h
e8ca8b13f1ac54933fc52d4bafe50fcdcacd0a96 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengles2_gl2ext.h
c325686f0147604bc509be81a62922077b28a4de computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengles2_gl2platform.h
c9e6f17d3434177459142f05e81285bd68103535 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_opengles2_khrplatform.h
0b4364b185231109d61663b4acb50e60e1d8fa16 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_pixels.h
7dea4ce940fe02f1b233d15ec6a75c9452a0422c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_platform.h
a4fe8a9359c247678ad56a47f8b8106fa465f4a9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_power.h
fea56a8d88b6a0ac9e12807d693628f80991bc3e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_quit.h
543bb618694ea9d4b5383e71a7c35b666b9e754c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_rect.h
d336192974f4cedab0497ad6ac60aaba19f3f389 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_render.h
dbe9b97d52e6d737646ce3cbbca178059fd34b1b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_revision.h
0960699d4857bb302e9024e7263c89a725a9a276 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_rwops.h
63871aa3b10beed824756b430687a3e16d7ebe44 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_scancode.h
40a6baaaec3d4d7e46c1da1fed54949123421035 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_shape.h
111a0645e8f690844712e014994e75d36d2f8ba2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_stdinc.h
45e5366fe51398d0d057c5930311c35a240d0f99 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_surface.h
7b776fdf1b590600ac38661ccfa4dc74b445493f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_system.h
8aa4a39ec1151b04bb4f705ecb5a036ef6cde2c4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_syswm.h
6cc373bf809ca34195c28d7ef465fffac49c0e89 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test.h
1788d7a206916e92ccc607c24d93805ec368c838 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_assert.h
be2e6b2aab48af89d8aab4986bd15bd0fc13bd68 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_common.h
c22e447d8aee297971e6c51e4c1dd2fdb3a5cd52 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_compare.h
3d235d07400f10b10297e533f7d74c2cf02bc394 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_crc32.h
59cbdcad6bcb101764c689f915d8395866b6ea6a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_font.h
8fcb9ebbfa1ba58da745c08e0eb0a322e00319c6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_fuzzer.h
8641e0a7e3ad9945ed5ec93813920017bcc06447 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_harness.h
9c4dd5b82954fc21c15ff9027372ca3419c6252e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_images.h
ebd44fb5021c3f4fc64dcab127780ab7da89ebd2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_log.h
0e4105768fdb6bd059ad867cb90d74637e28660c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_md5.h
4827ae6f2c372db861a635ae9faa32637f152a18 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_memory.h
0eb414ff2e4db2488ac5671f9d1a91048d0f3b34 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_test_random.h
82a43fc032af0ab2330e1706b5efe578df829c90 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_thread.h
5600618ff4f8fbaacb2edf547ef8da1c182a0257 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_timer.h
f4075e79a5b5dd486579aa374474e3927101abe1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_touch.h
4ac248c8c577f5150c8de8ad1b36df3bd4aea854 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_types.h
584b48c7a288c82b21cfee250c4ded52e5cc9c71 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_version.h
83f49faaefc694d2e9df9bfc8ab4e51726f476c0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_video.h
f04c21adb047f6f693a0fb08c1e86d081e5578d5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/SDL_vulkan.h
6c2106246f2583ba711451bc7e39fc2af7e9eec7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/begin_code.h
b3b70a4c833d80305bbffd306c8ac099babdf419 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2-2.0.8/include/close_code.h
a25b05a060e72f0e63aceec786950d399ced88d0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2.dll
25569ed9cddfa2a170c76de5a91abe849cc61094 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_image-2.0.3
3c3a76cb48151400f8f2d8549c2ef1f27368a627 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_image-2.0.3/CHANGES.txt
3ca25f9f58d199df0f0351d304c177da35ed500c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_image-2.0.3/COPYING.txt
64ff924ec0b89e6824d87300cf1d64d6d3798a51 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_image-2.0.3/README.txt
33107a313b43dfad0c0e34634169286c2b8abf6f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_image-2.0.3/include
1c04bfd8565fc5fa7dec62ab29809fa5ea2629f8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_image.dll
aa32d4c33caf8a9ded7d09e2ee0ab2a85986943f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_mixer-2.0.2
1c99deb8ed1f16397e8a03ced510c176d5cd34db computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_mixer-2.0.2/CHANGES.txt
056d0f35256b07c9f108233e1fa28c187dd9998f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_mixer-2.0.2/COPYING.txt
14de6e002567608d39d64f0ac268fe40af44158e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_mixer-2.0.2/README.txt
c1c42ac2b5cd97900f345be42b27af7e88a5bcd5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_mixer-2.0.2/include
54ebbb1d48d0fbc7300678d5368ebb57ad493795 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/SDL2_mixer.dll
bf2466a706c8b3afb46381cc27d5c0a3f2b61cf0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/fragment.glsl
2fc17db9c9edd84af5a2ad037c6b1cdc3abc1d06 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0
f7078042e95053d8e5b28a9d2024f43ddddfe89d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/LICENSE.txt
97df5e21d119b179e9cfe1e9819be258095b0a5a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc
8e617b6e4be042100d1f777a6c2a7ac7942205eb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/advanced.html
bc3497bc395f11791bf56291b34f42428eee4063 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/basic.html
8dd5580862fe239df0dcbd595404fa7e6af8538f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/build.html
ecf88b1380ce2214259e0810cae59ba660da2dfe computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/credits.html
540f7c0b150fc74a9d6c5a3f624fb9db3e3a2941 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/github.png
1bb7dd178aca27f9a3acca5b648f0c1bf3da66fa computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/glew.css
7216aac67c17c2fa7193430210164b5327ef9b4f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/glew.html
d46550f194988fe99362932b29f48aeded97111e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/glew.png
67b4affb7774dd76b63b1fbb88e6a39874f329a0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/glew.txt
d1ee00c022f14621cf774caf8ca41eaab71d1aee computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/glxew.html
b7b5f53df1412df1e117607f18385b39004cdaa2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/gpl.txt
84e740726e0e0552d407f29bd162b979c5ef48c2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/index.html
19129e3a03ae0ed64433ba63cc1192a49055d58b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/install.html
ffc271c91545b8af5ec3f335666adb484a12ae10 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/khronos.txt
a343f2bbf7b3a9b644925ca975ce184578cf18f5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/log.html
a82dd4bd44d23101d20fd6cf5b29edb78e92212c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/mesa.txt
7ce2b47960a7085d7e599044ae16187cdd79153a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/new.png
f318d7655b6f7c5682720b48786a08ae16409586 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/ogl_sm.jpg
caf2607e2e344c84da434397c060c406673bf39f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/travis.png
bf5c9da4fdcb245339002e0f0c7fb2e07accc302 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/doc/wglew.html
058acf96ef4ed40daa3f8052e21b1ac7b35c46b7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/include
b85ef6c2b3c7d58b015adcab6e6b2bc3f81862f1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/include/GL
4670147948b975c5a704b08c763a9c14190e1f91 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/include/GL/eglew.h
b5b6987fc70de735ac7a8327d3cc7c729ce2ae32 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/include/GL/glew.h
7e39c2fd98252e008f081073895a5165ba2147f6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/include/GL/glxew.h
2097c0f033bf7d3a6412f050e78dbf9e77595152 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew-2.1.0/include/GL/wglew.h
cbe1d67b3c5e482ecb039d17fba4312ed0173f23 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glew32.dll
192b0016b43f1681ca5dbce8951f37bf4eefc242 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm
01c594f47fe35dd90974758637d42bcf60c2bde7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/CMakeLists.txt
25e7a3764ae798a764c63cc8a48e37330b078959 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/common.hpp
63dba2208054d9d9630d6a54f5cbe393e92cc4c6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail
b0cbe9ff02cf50fc8a2e298998efabe59a9b07ea computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/_features.hpp
a503c7c0d041a9df14c88e391fee1b26b615f2c7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/_fixes.hpp
5a874a02221f1c5eaa0ed393d9f24aec3be898c5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/_noise.hpp
87896ef4f6f25e5d336a74c98b8369adea378e80 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/_swizzle.hpp
d93c6afd5b79aeda66f5e96077503625519888fa computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/_swizzle_func.hpp
ba7fd85c808a5f92f4b1c691d5fa442aaee748ca computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/_vectorize.hpp
cc24b9e62f50cd2fe6d54c2b82335c76fd70bac8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/compute_common.hpp
167b6345dd398e3822c772a113dab5864470f64e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/compute_vector_relational.hpp
c15ca56da05a708be281b271d4b988c91c43980a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_common.inl
ce0032d33fefbf095f9d5eb38ba56c88d11dc3a7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_common_simd.inl
2040d41f8a3dfe17cc129601e0d25b7ba56a2e55 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_exponential.inl
fb78951727f1c5e419418fbac9394322f579f1c4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_exponential_simd.inl
9cde28fed189636790ed32b285357442cb5ddf9a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_geometric.inl
e6c8d85f2b73595857595749d74f624297e4e5ca computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_geometric_simd.inl
f4067ffccbc3eb084ca0e546a3ca21bacb773e05 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_integer.inl
8be6c9ce4dc143cedd3565899b6c44b7fea3bde8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_integer_simd.inl
d980c6d3888584d108f12f41def72c0ffda633ca computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_matrix.inl
f7337fe7585d7ddd6014159c0cd9ff5c89a61809 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_matrix_simd.inl
234b093c081cc029ccf2094efbdb3d63b319431e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_packing.inl
fd0fe8b7d9b4a49f032fd678b7bd6a51624a6b53 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_packing_simd.inl
e129dceac5cb2ae09dd4154cf3356173317b9801 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_trigonometric.inl
e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_trigonometric_simd.inl
80c9e87fcb97ea042c1aaf42fd6424ebc0bc6e32 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/func_vector_relational.inl
b76ce478749af31c4cc8841bb9d83c0743e6d5f1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/glm.cpp
115817f19ac6aabaa460223d87b09f47201e8419 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/qualifier.hpp
04430ea61bb64c8cb99ddca4e4b2e3952a045f2f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/setup.hpp
c8037ebd7aa265cb56e3b809cf19df8fa807bcf8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_float.hpp
40b8bec00d34143d2e1f0ff60a743aad9e30580f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_half.hpp
6a052f26796916d02cea959fe8725bee0e42769f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_half.inl
033908f4495b79a9061e79738049684981ccd7f3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat2x2.hpp
fe5d1aa313339cc82bb2992ce9237761de8dd667 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat2x2.inl
d6596e469b8445cafd61b8b19971a60ef3b82ee8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat2x3.hpp
5fec17e5dbbc7b021628543715bda2a8e6bc70f3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat2x3.inl
ff03e215e5e4da0d190c514461fd57c902643bbf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat2x4.hpp
b6d2b9ddfd13e42f12fa462d7be77b32aa2d8e8a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat2x4.inl
e16658131fd6400fde34299313a9ac92c2db4f7f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat3x2.hpp
b4b948b72613eb48253a5e5543ac977ab90d44da computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat3x2.inl
3174872eb7c1b93f7a10b5fd0d653a814c1ccf64 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat3x3.hpp
1ddaf99d5819c18df1809a046c1b7c87402a0ea4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat3x3.inl
6e40b90305eb2bf55c5bac3f5b77f8cc33f2f538 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat3x4.hpp
6ee416cfd657f7e9ed1bcf27e4cddbac641f4979 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat3x4.inl
8d3435271114988183d12ae39c1a8577e0da3327 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x2.hpp
419c80c42cf105be007160d38ce37a81b60b833c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x2.inl
16e42705185bccd57d5de38b57f0505666aa7031 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x3.hpp
702025dd65e443f7a037331121e159fbf2043f98 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x3.inl
3517f9f527de3eef38076c3f991284699359017c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x4.hpp
e38b87f77e73a3cd731a18baa9ce4a3dfcfa99a2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x4.inl
fb3a16f062901d31b8ed8c493efd17e1cf87468f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_mat4x4_simd.inl
b49c2534834e93a99ace4c24fed4df1724620b98 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_quat.hpp
d9f63c6744ac865b02cffb41583820247875eadc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_quat.inl
3333e59f1c7e2626b292d3100909027e400a0f16 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_quat_simd.inl
51163f14bc88aeb1c3ad4ba3449de0dc38e5266e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec1.hpp
d0f49fd354e605ea10ba96769aaad769c9604eb7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec1.inl
52ef408e5d2165623e764cfa664fcb8372361bf6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec2.hpp
8e65d6bb9e2e358c6284404b84dda0373b2f90fe computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec2.inl
d83cde678f8b695532e94cdf2a78c589f72eb1b4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec3.hpp
6532c9e6e06ba8fac8edc1fcefeff7547118641e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec3.inl
15fabe12a689944db0bc341f9deb8bc1a24a6e24 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec4.hpp
3c212d98bbeb05aa98a416fb6dd4f096087b07ab computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec4.inl
415b73cb73094b20038d3ba5bb44f9eef4586f02 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/detail/type_vec4_simd.inl
f8fb886f6ed8a1b8f5ba29a86dba6719af05caff computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/exponential.hpp
3bc8db27d807b67384bc83ed530a3a72064a3027 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext.hpp
6c3d3e4ba49cbbec0d91f15e3fbc64a306b5868c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext
c3874f2f8d753268e6f20618b9d448a6eb62c0d4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_clip_space.hpp
9b870dc71f6633846349d9522b8f1922ab244f66 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_clip_space.inl
94dca54b59bd00e36e28a37816525f59c8eb2a56 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double2x2.hpp
9e2c174e43be2dea558bbe45b75c19a4351c12bc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double2x2_precision.hpp
bfef87a666c1346ef7053f44b8e0d862b86e3af0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double2x3.hpp
098fb6046e889cf7e2b19039c08ffd9a51bf2fda computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double2x3_precision.hpp
499284bce161de74be5cb0ab7798d45c69d682e2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double2x4.hpp
9b61ebcee1efbb63b0d95b2fe9e88c804ecb631a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double2x4_precision.hpp
dd23f36cdbb2530d9305f4e6e037eb2f88ecb544 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double3x2.hpp
068d9e911721623bfb7c5d5ac3ac5591581907e2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double3x2_precision.hpp
53572b735626e224c52eb386a794353308574b6a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double3x3.hpp
8691e7808dc95b7f4466ec9b6c829f54f9416edf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double3x3_precision.hpp
c572d637cd2dce86aa0d8d45c4457498880a95ca computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double3x4.hpp
f040217e748ab7b56a8a292b4825c5926716b176 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double3x4_precision.hpp
9b229f471e8d4904c7135e7a27719820dfe5225b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double4x2.hpp
6ad18ba9e65e108090e8354e5a55a5ac1c5f3b8f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double4x2_precision.hpp
dca4cf956f9189b7b74cece7fc3f2af9501ae49f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double4x3.hpp
f7371de84942ac21b33e7eb81e97352c6a4ec449 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double4x3_precision.hpp
81e1bf65cb5c4b071a394b6dc1d9d53e04b21500 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double4x4.hpp
4c36a8486c72988f4d0d1f8a822a69c4e477fa95 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_double4x4_precision.hpp
53df921fe216b575c92239c478301db803416a14 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float2x2.hpp
898b6db7140807bc0d30b676724827d623c64da3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float2x2_precision.hpp
6f68822dbf1e742431163115f4bafc35b6896606 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float2x3.hpp
50c103245c3a177b958de4df333245d09f4d1e28 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float2x3_precision.hpp
30f30de3cbd4c12cc642a6ac211e40876bdca525 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float2x4.hpp
079d6382863172411ae6a82837bb34ea6e2096c9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float2x4_precision.hpp
d39dd2fedd670f353f4ad9b5f9246475e2e69686 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float3x2.hpp
8572c2a1b20e5a1e47bedd72ec6d0009fd15d9bf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float3x2_precision.hpp
177d809ff9f4c157beda61885ad3994fe3e3d141 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float3x3.hpp
8a900c16420006f110c9bfeaf186156d9fc135c3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float3x3_precision.hpp
64b8459dcdd2d489a7a8fc93c1282f7cf1ec2673 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float3x4.hpp
bc36bf13a1e957ab625e3162312f311a9d5a287e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float3x4_precision.hpp
1ed5227bf58000e7c2d822014b29b49d685f6972 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float4x2.hpp
88fd069630a802ab8c7d80791ae91f98969098a4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float4x2_precision.hpp
5dbe7657043f704017228a0ebc03ed5a7a0c9e40 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float4x3.hpp
846ed4fc8d9ccb0de18374fa039cffb823d3586a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float4x3_precision.hpp
5ba111de048171ae0f9849a2c5e375f9351a8bbc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float4x4.hpp
597149bcf90fcd34e1b22e970fbd01cc45742fa5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_float4x4_precision.hpp
51fd01bd8ee7fb28c992579c31c6200bfff98cf0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_projection.hpp
8b4eea98602afb60cc11c5b36b5d1b16d4d49e71 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_projection.inl
20023ad89a0ce6fa19b1294212ab78d0dff479b3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_relational.hpp
b2b875309decbe275ca68432f4b4992ca55a6409 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_relational.inl
cbd187efd85015605dc7d33e4f919b99070ade44 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_transform.hpp
5037ec1b2772a9f3067d8a548f6a476ed3c04aa9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/matrix_transform.inl
2980ed4d43ae216a2f35622b69035b606ec192f2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_common.hpp
3b2846f36ee532552b2478212be1fb15be96991d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_common.inl
ddfc8a44f6a32774ff092201bc9ee2fd2a11b80b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_common_simd.inl
63b24de4d52afb415cdaf8a8077cbb95e5a01d90 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_double.hpp
8aa24a17752dfd04aa05bc80ff179c0b02d58fbb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_double_precision.hpp
affe2979aad5bcc7a475d8293bab6421ae0c7bba computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_exponential.hpp
1365d0a96471824d6facea3167e225166ce595d7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_exponential.inl
ca42a60597f43d241f7e6a82bf6d0b98c2161621 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_float.hpp
f9e4f5c21d9075fbd6cf3d684774a62a39c0d15b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_float_precision.hpp
6d98bbe93fc6b0ea0f2e082a51793379682b7eb2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_geometric.hpp
e155ac5218075dfc37aa0720ace9b0bce901c071 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_geometric.inl
7aa121da0a1570460ecf379cf3d4b3ae7c9941c3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_relational.hpp
b1713e95c6c5b9dffb8f49aeeb659d7e82a7dbc6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_relational.inl
a9cc5c2b59ff883d1de1b2bc2a0b57ca57144089 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_transform.hpp
b87ecb65d9f7ce739f5f3eeb1e57d5b4f4edf9e6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_transform.inl
76cea27add64c4d32ec8dd0e164132090e1a43c7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_trigonometric.hpp
0c0bf63f536e9b6fbdb858d686c97a15e5711111 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/quaternion_trigonometric.inl
4ab0f88bec700b1bc63db5bad730f349a8756d60 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_common.hpp
118a670ea7599e80652fb8b6e8e765cf9bcebe3f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_common.inl
4a61faa5fbfa7b6ff019a4643f4b8e32351b576a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_constants.hpp
c075fbc7d651b81f22d954184c390f2df1bc239a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_constants.inl
5dbd7845adcae744951869cd30b560fae24fe14c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_int_sized.hpp
3076a5e63f93112b9a60974b8b33388272df96e8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_relational.hpp
27370e1445f3353574a9afa103fa0f4762c2f07e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_relational.inl
fd5267fad7c16dc5670f1622b3328ea5089d5a66 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_uint_sized.hpp
90e177da1e12b9acb852f659238d1f5eadd21013 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_ulp.hpp
8fc3759b9878b3a5eca9c3e6c72d55d03350c114 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/scalar_ulp.inl
002c3202adf0dfbb2db1eedf23f2f677d343c6f3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool1.hpp
e62d3cfb5fd4c6f31e9bb22cc4129c7bf7f28e01 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool1_precision.hpp
52288b75c6973f49aabb5b8a15ddd1036b172f84 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool2.hpp
43709332c6298ff345ab3b061917272aa954f655 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool2_precision.hpp
90a0b7ea5ac048f264dff79fe8d270993e55d414 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool3.hpp
89cd2d3207a168545f98a3d0af69b9c772a7c965 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool3_precision.hpp
18aa71bd0f49851cac489520c4df893370ddeb6e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool4.hpp
79786e54206b9cb3e92c6ba3d9d69f35200e552b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_bool4_precision.hpp
324fe1c70fea7d7a636549bd2509b9a57b21ffc9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_common.hpp
71f38093ad07a36cb7d733636b84b5f38334c72c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_common.inl
ef12def4217c2e90c973f8d1b8622124ea73cf00 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double1.hpp
1d4719595481adf57c071e0fbf6df4716447a55a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double1_precision.hpp
60e357750b675415da9d8911b92ba702b7aa8390 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double2.hpp
fa53940f6bbed061a7f3fc4162877b68b96c9388 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double2_precision.hpp
6dfe4c675b5d7af1f3538f5c32203065453b4025 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double3.hpp
a8cfa37a8c78009bd18ddfbfff7e4a658300e712 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double3_precision.hpp
87f225f64d4ab38b0d7212174308e606e2c9ad18 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double4.hpp
09cafa1ebafdd72b85c4f01746bf315ddee1c02a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_double4_precision.hpp
28acc2c9ca59619ba1401032141ed223d347650f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float1.hpp
6e8dad8d17c8e0e2765aa53323a1c093c685279e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float1_precision.hpp
d31545dcc966b37c0c942a9d248bb337c4b178a5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float2.hpp
23c0820d0ae8445f4539bf0b7f7c18886eb8ae41 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float2_precision.hpp
cd79a62004e41ebb2798363235b7573496eacf05 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float3.hpp
be640b53168387c07c3c2f8640794699a8e5953c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float3_precision.hpp
d84adcc22fd2b2e914ab6f56af92d534a00ddbd7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float4.hpp
aede83882e55140fa53adde2ea0b72be29c77490 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_float4_precision.hpp
dc8603891a9967bace26b4c23f4c5485b22f6ba4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int1.hpp
3323954b557078fbc8df6b80c04b44dd0ed2e167 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int1_precision.hpp
aef803e91b736a1f2a3a32deefecdebbbc70fe5d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int2.hpp
97315fc311738c8afb2b4dc1632b27680b5bc3ee computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int2_precision.hpp
4767e61e88c08a38696700ab9d2517bcde346085 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int3.hpp
2cd3f5ff8a62ffe438f08479748812264aaba77a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int3_precision.hpp
bb23adf706c226d13cb3291f7ab9ded06c30e945 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int4.hpp
4fcd791691e2175783d7e60c64351f977c329b4d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_int4_precision.hpp
a556bdfa9ae5def5db13c3249f79afce94ba627e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_relational.hpp
7a39ab50897e35588cf226c741df6e7beb00e884 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_relational.inl
eb8a7049761f0bb7c735ba689faac84ea5eb65d8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint1.hpp
30daa5b6619ba78b3aa7068f2bde32f3287d1324 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint1_precision.hpp
03c00f5ff584d48baf6aab0ed8c5a794138f3219 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint2.hpp
2ba7b0d437e1fdbeff72a9768947028edc1e5feb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint2_precision.hpp
f5b41c40882ac5fda0c1440956c8bcd8f7c098d4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint3.hpp
125191c775d014d0aa78612d7d10ce19a190c573 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint3_precision.hpp
32ced58a8f03f902acae6e0fd0e79a0efdb0653a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint4.hpp
cf4097ce9d7a99bb302a0afe2b1c38e1773f49da computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_uint4_precision.hpp
3883758f06fa3f5336912807cad47b34a925ac5e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_ulp.hpp
864653431fb2fff5084441263f2e3ae7cba4e289 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/ext/vector_ulp.inl
41a3bee571f4b960fe55aed51ffa53a6f78db755 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/fwd.hpp
c068a3cbdb58b2b3826f4924de6420936527cbae computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/geometric.hpp
8b61064968032e6ef56a0f7e572b4b1abc5976c7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/glm.hpp
bedb8831714ef98ee39d235a26f7f8598b589e36 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc
084fbe75ff144c36e700d9f800fdfba6a0106c30 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/bitfield.hpp
06cf1889cd40b366882a1f408c8c7ca40da5b680 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/bitfield.inl
cffd9f093fb953ed2f52ef5a427c8b889072d899 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/color_space.hpp
2a900044e99b7507e9921782684461acfbd6ab1f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/color_space.inl
99f212869e0d753d10e0ccaebd51f681de1cce05 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/constants.hpp
87f5c860f4705ee1d6cb7f6ebddaa64246318fde computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/constants.inl
640439b11c36cd5df5261bc0e7a62c280700a252 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/epsilon.hpp
508b9f8966feff92b269182a24e03b67358a4a91 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/epsilon.inl
4c3f28f651d8e49423d91ccf0eb45c8b9f72aed0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/integer.hpp
f0a8b4f2578e2935008defa43f6864c8d9dfb72d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/integer.inl
4935ba755dd502af46a80bfc30a49b39e188a8bc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_access.hpp
09fcc10d3d7e4c2c1d70de38b4d02628e09477fc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_access.inl
557a9775baa5f8f45e8148b18994f74907b13621 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_integer.hpp
a1900adcbb06703235b1528b33cb239bd0a16c29 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_inverse.hpp
938a940850333cff6f7dd8d6f7f675592188bf6f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_inverse.inl
612418fa51c49d91c4e4e4a315083044a3db0b4c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_transform.hpp
15b46bc9db617b238d8a60d382f584372e9d0855 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/matrix_transform.inl
ab1772e78125da6c280f4b1a676d7ff2c8fae082 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/noise.hpp
30d0b274d337a8e990fe0e264130e0e42c0321cb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/noise.inl
2852395221683ab3937beb709eac8f12055fac2b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/packing.hpp
8c906e16c11aac784720d8a5ec29b49729e840eb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/packing.inl
359e072b9fa8d7667d54f3afc8ba63ec23563ddf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/quaternion.hpp
9dd037ee84d9e4db6b18e69c209cba5f5d242e8a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/quaternion.inl
9a859580e409c1d3ef1d11f89c91f1b8aa7b56d1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/random.hpp
de10a409dd9327b6674bea5d05455cca784ea3a0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/random.inl
c7d1330383827ef0e7b6be0441c09fdf7b5d60b6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/reciprocal.hpp
d88729e88f4098ca26ce757f54b88318d29bc45d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/reciprocal.inl
fbbcdeb55092dbe8fb8304f5e4888a23f05cc7eb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/round.hpp
0d4d7d67de913573021083c51b6a55415bb6fe54 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/round.inl
5403abf675256b1dcb53bcd7eb553336daed29f6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/type_aligned.hpp
250bc4f96dd2167f4ced0b1cc9899ced7c96e422 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/type_precision.hpp
ae8091206bd402a59d13d86edc1998b78eadb372 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/type_precision.inl
d7e625aa591719bb0c7e42db2509c48a2fc89b8e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/type_ptr.hpp
71df4d30d00cb844dd0cc5bf72c69aeaabb9e5de computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/type_ptr.inl
01f4f11e1e4710738597c479656c85c98a52c3aa computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/ulp.hpp
53f4950a96db380c727aa91a2e3fd9183e959eaf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/ulp.inl
c20be87475d284821d4139fddb95f5f850710a4d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtc/vec1.hpp
1f34c569b7192d9ec1c1ef6282aca27c40ae889a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx
1042c13e47c9b3951ea0ddb4b225326355fb47da computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/associated_min_max.hpp
1a459addf7c142e8db0068daf83fc78e9f5534c8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/associated_min_max.inl
31a7c0698a8b1cc516cbd379b7a47323ffa8e1af computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/bit.hpp
621b6262406de7bcb462e09085fc82f2d638bdeb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/bit.inl
d257bdc1f4334824509f6950f6644fc39d9eee1a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/closest_point.hpp
0a39b042b88c9f57052e0580f5fa8bcbba3ccfcc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/closest_point.inl
8581b159c50e1bf5e80bb60894cd528d3b0722ad computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/color_encoding.hpp
e50fa3efa42c9dd0452e11e0158df443d8c7e55b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/color_encoding.inl
edc959ad74c5da913118726b49857c55d84cf291 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/color_space.hpp
f698afe1e1b043b4f579896de7bb5cd921bc4075 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/color_space.inl
fd9069e082c6253ab759842adc5fd460bebcbab5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/color_space_YCoCg.hpp
83ba857c08bd248e037e0819c9fcb74558e81a77 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/color_space_YCoCg.inl
c36f850e0e76b3388d92cabff02a95ecef68a298 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/common.hpp
4ad2126d965d793dfd999c323039bf05c04da2d3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/common.inl
3114710398779cb685d596170b048d79ffc15c27 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/compatibility.hpp
1d49496b6c6e817f67f416cac7f3881d8b54ece1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/compatibility.inl
717ae82c0ddbcbeff22a998dacdfb67db2a41da8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/component_wise.hpp
cbbc7d41ec007021d1f199eb106c87396a5fc03a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/component_wise.inl
1732b7dc0321fa7cd3ae97ef90f2f89ff78bbb34 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/dual_quaternion.hpp
fad07ea842c1f86ce0aba7e7c78bb85c3781fafe computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/dual_quaternion.inl
eec96c4bc8aed96fb22dd2b5b577ecec35b7936c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/easing.hpp
4b7d05b719600ab2121f5c34f945f403a556225b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/easing.inl
17eb84149ca8c628183692fb52b719d370c7407e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/euler_angles.hpp
68c50124e80eb446a454508bf925f62247cb04e5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/euler_angles.inl
914d407288f53042d6ead9c567f30b7de82edbf4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/extend.hpp
32128eb209ac74cf9c875c501cdc2c98956a3528 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/extend.inl
26802c32028398b87989bba4cc8666ff80bc55db computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/extended_min_max.hpp
e72d1ccf1d675537eee8109b9276330bddaadc2b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/extended_min_max.inl
473630e36332f4905eb22ceb6ba936d6ee6cb495 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/exterior_product.hpp
93661fd3fd7f581806610df4293bdc8bf5c4a71c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/exterior_product.inl
64e68ac22eb476850fe473816688b5527d9a98d2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/fast_exponential.hpp
f139e505636b6ecc187b2f544590669155ba0aec computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/fast_exponential.inl
275ac11af59d73bbe708bb2ccf0a06c3e448fe4d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/fast_square_root.hpp
0bc359002420677fadc84561017312a02bf16b21 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/fast_square_root.inl
c49dd7d871de8383316b17e3d843e2a737bae24c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/fast_trigonometry.hpp
1a710cbcd08d48ebabfaa09e6314c3397e0d0fd5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/fast_trigonometry.inl
8cdbc5aaa9c3895ea1f0e7e3a817f78b813e10c3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/float_notmalize.inl
6bd746c4666a6ea07251f3670f4975863665f9ad computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/functions.hpp
29cbb20b80fa501931a5bf9203a52171b4a42773 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/functions.inl
2749c080a243190aabcb2be35f5c174f6247d98d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/gradient_paint.hpp
4c495e62cbffd88b88fcd7086c692c2f67f157d1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/gradient_paint.inl
d47230fc8fe08b7b4b60c46141073ecc7b8267dc computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/handed_coordinate_space.hpp
e43c17bd3120931fff5438f5db175852896a1bbb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/handed_coordinate_space.inl
3196be7ef011596fa69f8fb3fc37b1a5e1d80513 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/hash.hpp
64443ef8cd442662c81f94e070011f4a68da0544 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/hash.inl
338a03559c2990342111beccb380c9321aedbd05 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/integer.hpp
956366b250f8c84e94d638dcd5f8a8744991bf51 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/integer.inl
8caa17e49a441cabf6318b524307f6f13e1af11f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/intersect.hpp
e76fd628b74d8b3d01c60386be0e45e6693e2ea2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/intersect.inl
c2476449841db8f60c629705a5feb9ed8363339d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/io.hpp
a3a1bb6c26b4175373a6ec45595cada792567c1c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/io.inl
6e8e1f8e1bebd19b25e4a13514a3389b9cbf5404 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/log_base.hpp
4bbb8e895abbdac32e58cc4e66f700ac86ba17a4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/log_base.inl
6feb4f12992b3d983f4d4b7e2ed76d0773dca8ef computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_cross_product.hpp
3a153977cf59d977d3f4c318569751dee4f27331 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_cross_product.inl
bf75b93a2d028d668d4b63f0b25f226ff2730107 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_decompose.hpp
134103f3b09f16085a565e05347731a0314540b6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_decompose.inl
109eb643137c8fb9a06b8c65fd99e71264d4b990 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_factorisation.hpp
c479b8ad99094b0a301ef29b31e112e7441ea143 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_factorisation.inl
da76df023ec4cdc4f9fd40e35973cacd13179a40 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_interpolation.hpp
de40b7d745ec138797ddc47ad94bbf32a1d9ca4e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_interpolation.inl
d3020f7d0199a1e2fa7d07c8b980adc7fe3e4231 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_major_storage.hpp
279dd3433d0bd6dd5509cc1da75ee5b212eac784 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_major_storage.inl
976177830e837ab02fe8dcabc5e1a22e4360c392 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_operation.hpp
9de83f82367157792446e91d3eeb627c1947bb3c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_operation.inl
4a3f72f2fe001419c3d79bd58fab16e6f11c3022 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_query.hpp
77bd23108e3bf3dd4880fc8072b8a7c9ee27e37e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_query.inl
af4cde8ab7b6b02bc609145dc7edaa272407ce5f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_transform_2d.hpp
a68d24dc9825c97cf47753779ed97834ea77aba0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/matrix_transform_2d.inl
50e5d25c77f53589794842ee2fd164637205f2e6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/mixed_product.hpp
e5cdbdb49a2bb7457dd74ca08cdac0615d26b9c4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/mixed_product.inl
8ea0cca310629e710d19af14f3f4fa19f06b9724 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/norm.hpp
c3f468c3aa7ce71f718fea353ac426006fa1f2a0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/norm.inl
1089d87575e2bdbdabbbd58fd4d85a648ceafa17 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/normal.hpp
74f9fc9945854fbe607e87ef47bf506a332b8966 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/normal.inl
1cb02020bf7fd4dd61c9cd298cda645a3754971c computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/normalize_dot.hpp
7bcd9a534a8f4df3a12118c746aadd6f264e264e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/normalize_dot.inl
88064e62456e754b9cd11a834a7e6b872d54bfc7 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/number_precision.hpp
b39d71c3b49d322835a883ed9e5825206c2dc354 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/number_precision.inl
cb068ccfdd3b2a98fbe63606799237cd46d0274e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/optimum_pow.hpp
a26c19c18bfbd6b84d7c1be07d9448c6fbcb7e01 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/optimum_pow.inl
47b10c6644d47f80d3107a45326a97af0d46ebc9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/orthonormalize.hpp
cb553ba62157b3fca6c704777242bf473cdbe483 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/orthonormalize.inl
d294fd313974738a843e3c2477a4e79723b67853 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/perpendicular.hpp
1e72f334230dee397361c2bae3af71600ee0a722 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/perpendicular.inl
48ddf7f4856cf72b1a17f9bd278b7346b7847eb3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/polar_coordinates.hpp
371c8dddebd1cf197ab8527b4bb8098edf733814 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/polar_coordinates.inl
dda5f8bc022ff44ad0b6d49fdebf5ef6b4cddda0 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/projection.hpp
f23f884fb93a2c246d4560ec1f18c7292f9205c6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/projection.inl
e3c03de9aac0b3f0d0ded3a0459a99a1a975c99a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/quaternion.hpp
679b39f1e7dafc8c5175733c378d386cb7ef1eef computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/quaternion.inl
38c5713a60e18b53cd75ca5240231936b2defe9a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/range.hpp
f4d7fd96e68d67642a28db78386d419e0e1d8fbe computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/raw_data.hpp
c740317d334e7f08181df5ac2522aef7e85bbdb4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/raw_data.inl
87a63eb8e0826c0bd150bb2ff656bf0623411193 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/rotate_normalized_axis.hpp
b2e9278c0ae5d18775fbe93919e410a1b963ca06 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/rotate_normalized_axis.inl
f918c6c260934adf92d7dc4f1a42c8454d1ce9b2 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/rotate_vector.hpp
f8136e765e0567723bfcfe6b3b13c6334ab4d5c1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/rotate_vector.inl
b73edf676ab51f65e45c3d8225179f06b8c3a58d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/scalar_multiplication.hpp
491c62abc2e35f9d52a2e76986f8ca45ef9084ab computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/scalar_relational.hpp
c2a121cff9771266eb1de59182a1dc962f9a5e54 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/scalar_relational.inl
d59fa76aee1c333bb2083890d1093b324a0e4afe computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/spline.hpp
c3fd0565629139357a81ffdcae55f8e89b4831dd computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/spline.inl
6183a6228cc1ec39df1d06cb32aef7f5663d8e4d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/std_based_type.hpp
9c34bdb6e0f7348895bd59a256588731bb759da5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/std_based_type.inl
0564e57bf5d72723ad89d7b77cd2c18383f8d506 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/string_cast.hpp
4ba7da3be3ffbbd364a5f47fa8a36262092bc1cf computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/string_cast.inl
ee3bf7cec0d30cbfbe5ca1a19ab7b44be8c37a89 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/texture.hpp
593c826141b0e0c35b513bfbac623e9a6ecb3168 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/texture.inl
eded01a3e3bb5959ae01bb8fd73ad443c7bf9366 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/transform.hpp
48ee6801b6515266b1cfd9f389258ea5b200c5d1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/transform.inl
19fdf6cc9c834325e514731af87144e8003d9784 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/transform2.hpp
2b53198b3302ed45c14b7ff01a7314380663283b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/transform2.inl
130f4cd69c7670f5e461d2e619e6af0b03621c16 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/type_aligned.hpp
54c1b818b64af8a03a2ce5c93853a7fce5093ea1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/type_aligned.inl
6a7bed6c43521676a226866bfefbb70a264df959 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/type_trait.hpp
045de959cc21dcb60ba5e96424419e9b57824435 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/type_trait.inl
daebac384edb1db45de4b28e74a6db0b60925ed6 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/vec_swizzle.hpp
c3660ca4e16f9a84dd7a4eb1c5c605da1735e2ef computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/vector_angle.hpp
a1f957a594fdea0904d32a2cf76f7169a4dcf239 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/vector_angle.inl
7d663d7415eb0b0fdd176a984c18e6c15e21f61d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/vector_query.hpp
d1a5c9be46b1574a80c076d303822261e84e940a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/vector_query.inl
ecd0f0483339ef6734aa594e9ae4bd17267b413b computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/wrap.hpp
409a316ab030c9e137bb5eb06d4e430c90a140d9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/gtx/wrap.inl
8817db3f0a224f6b36a7a0ad75ffc3d895e75aaa computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/integer.hpp
96bec96b9a63846e577ebbd0e2dd21f65ae8f353 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat2x2.hpp
d68dc25eda943a72429732f0cdda9080a38b4829 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat2x3.hpp
b04b7387b1a31826ce22ac25d7926586b7b6f14a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat2x4.hpp
c85315372dc02dd2d409a8e214ea587101241a43 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat3x2.hpp
fd4fa31cdee018ed6eaf4a0d5386396010f89c7f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat3x3.hpp
6342bf5b992dc97c57b532e25c18b8262d2a2f08 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat3x4.hpp
e013e46b9c20c136332dd71ecc4f65abf7b51cfb computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat4x2.hpp
205725abd25aa6094e140d80f3158b6a7659ea60 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat4x3.hpp
3515f7f370bf105587316498db2459294cd52537 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/mat4x4.hpp
6badf5385048cf47124a1050092bd341e3d21bc4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/matrix.hpp
ca83ac1dec960d3ddef0127a43f9504d64772fb3 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/packing.hpp
25d8d8a82359da8d0dffd0870b18eb0b173eb6ca computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd
d07920a3c0b05446b0e86d000103c38e460618b5 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/common.h
bc351d0119b9a8a2513a23eb02a0dee5f9c03d2d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/exponential.h
07d7cbcc425f2910e2dc50bcb35fe0cd7a0d9609 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/geometric.h
93814183fe027ab62e3532062de1abbb0ffe8c9e computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/integer.h
b6c42ea4c17cff134a492d057309a131489ef51a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/matrix.h
609163eb0d77aaccd0f165fab215a703d70f91c8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/packing.h
717e9aab6e0944314c9f8933ff228a92380a581f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/platform.h
739b796e7e45c86f07dbe5d508ed46dd9a9c6fd4 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/trigonometric.h
f7385e9747363cf64be22d5b0b5e061983a36a12 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/simd/vector_relational.h
fcf07f899f8df646da5bafe825404e191524fe15 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/trigonometric.hpp
be768bf5fc0ebcc51b9c04cd8a00a4d8a64e44f1 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/vec2.hpp
f57072239b95cac0e172e41375d73062af402635 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/vec3.hpp
9117020725c9e5768791f5a75116d985af42c4d9 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/vec4.hpp
a0fe17eb707a4e5ba3590fe16d2704cecc3bd8ef computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/glm/vector_relational.hpp
1c55ad4966a52c673e54be638bf97196ad7bf2fa computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libFLAC-8.dll
95ca5dcd012686d7593b8476af87e445713a9391 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libjpeg-9.dll
a2cba0d6b5cf20d7fa854a1c698dfc1b2b45d714 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libmodplug-1.dll
ca7de300d7db8875d19fc379dd36a37504bd70ca computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libmpg123-0.dll
3abe6ebfca1a9a96b2b679aa971302dcb5f66743 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libogg-0.dll
6a61939c17a4a80af4246acc6c6f0b3a9f47be1a computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libpng16-16.dll
615eeada88544ca96792aa0693f1f84fbf5e8440 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libtiff-5.dll
4e44ef0886511997ef9f14a2a3a49b3b5291c336 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libvorbis-0.dll
e757eb6ded42f8a14b0e3cdb1ad4b76a4fac6f12 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libvorbisfile-3.dll
95b73043fb2d2ecbd3dc21b7aa63f9ed333aeffd computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/libwebp-7.dll
1817032d164c6a56fc13d1b426d4b48b317e3566 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/main_opengl_texture.cpp
e85ce206f024ef7355bdd5eaf30cb6fe2d46da46 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/opengl_textures.vcxproj
adbc65b8da09ca0fcff6e53eacf17720785547a8 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/opengl_textures.vcxproj.filters
58350b09f8d9aadb0ee87421005128d905c0fa63 computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/test.bmp
015d63416582dafca8d88e2e2ad50ae685fe004f computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/vertex.glsl
2dafa3cef1bfa93728e1bb044a6dec4a51f2475d computer_graphics_and_applicatios_final/opengl_textures/opengl_textures/zlib1.dll
bec06ff1ca0cb15b1b7c3c7365f3c9f8cbf4a75e data_structures_and_algorithms_examples
1663b18284b23a50cd37265d3deb301e8bb05fa2 data_structures_and_algorithms_examples/Binary_Search_Tree_Example.h
af2f893dbcf0da44ccfbce5fe97db1ac9d6d3a84 data_structures_and_algorithms_examples/CountingSort_Example.h
c0a3c5ff5f446ecce8b31ca7cae7ef18b1999f9b data_structures_and_algorithms_examples/Fast_Windows_Console.h
86850130a131e6088d692f274a53208cf8e83b90 data_structures_and_algorithms_examples/Hash_Example.h
e8f8db8df2e8f6a9cabbbbc85d9572ccc094d227 data_structures_and_algorithms_examples/Heap_Example.h
fe5978482a97e839c5ad6c924461ffc94c85b89c data_structures_and_algorithms_examples/Linked_List_Example.h
50ba9b3eae21a0df4a0e24167b8a6233f1a9fd3a data_structures_and_algorithms_examples/Queue.exe
521703f63b3459666ea04f636e17c4945cfabfe9 data_structures_and_algorithms_examples/Queue_Example.h
d4780032a39e97373c20a122a9ad4e898a0ab03b data_structures_and_algorithms_examples/Quicksort_Example.h
ad216e5e221a63bffce444d05ec99f3fe6db0c0b data_structures_and_algorithms_examples/Stack.exe
926a91d57bf08e8a6b4605fb6ec06a6c1af4c2fb data_structures_and_algorithms_examples/Stack_Example.h
10b80727c2438f81273ae8213af0a017ae6a1b80 data_structures_and_algorithms_examples/Trie_Example.h
40e09d79576fb32aa4b006f063d7dba37cfd6635 data_structures_and_algorithms_examples/dracula.txt
05964a4b1152d063505db042fff84f1d2b8fff97 data_structures_and_algorithms_examples/main_Binary_Search_Tree_Example.cpp
ad037b1b85218ddeeba718f24e94cd84721e931b data_structures_and_algorithms_examples/main_CountingSort_Example.cpp
91c6f16fda803fcef2b1240fe9300298ad6d755c data_structures_and_algorithms_examples/main_Hash_Example.cpp
43236000684066998529a6d1ee55009c72d5ef91 data_structures_and_algorithms_examples/main_Heap_example.cpp
576b75e3b540d0f14c686420e99a110e525455a4 data_structures_and_algorithms_examples/main_Linked_List_Example.cpp
07a03b1dd2dbdc5d1163839de5249eb5d85190f9 data_structures_and_algorithms_examples/main_Queue_Example.cpp
dc670580b25feee9bf6af629be6f68a21f959b21 data_structures_and_algorithms_examples/main_Quicksort_Example.cpp
3d9e4519d45ed7b4f8188978f7f4daf84b111eed data_structures_and_algorithms_examples/main_Stack_Example.cpp
28265e0d5f6609d03299dbcab82ddff03569682f data_structures_and_algorithms_examples/main_Trie_Example.cpp
440c061999d287dd9b23b7cf19394030529540d1 game_development_using_C++_final
70b15ba5568cbbe6024c7874e2e880f22053c443 game_development_using_C++_final/SDL_solution
4a4b578320abfddcf485fa128bbbd1a6bec8e273 game_development_using_C++_final/SDL_solution/SDL_intro.sln
592db942067f04140b5a98d2d366399bdb3081ec game_development_using_C++_final/SDL_solution/SDL_intro.vcxproj
a91ad0ed994ce7aa3420c56bf7050c66b31ad493 game_development_using_C++_final/SDL_solution/SDL_intro.vcxproj.filters
e593cc6ebfb2d4b0db900a5f8c12a0fcacb64d4e game_development_using_C++_final/SDL_solution/main.cpp
e9e73cbc6f67e8ca73254f106d7f75bc150b3f45 game_development_using_C++_final/simulated_annealing_pseudocode.docx
f2cbbaccbf2a15fc30855db114a2d4d0aac80869 game_development_using_C++_final/travelling_Salesman_final.docx
208f1da1428aa4c9d21717bfe6f621b4d2b869eb graphics_examples
7a05c5102d62b3ccfa9946c6a99b448489ec94e5 graphics_examples/.vs
9c8100728f123a1dfa84649fac61660afacf807d graphics_examples/.vs/opengl_example
22defd7f877b193fca2b137960a97562800b717c graphics_examples/.vs/opengl_example/v15
9c153089eee917fd61177bfcd088a55d817cacb9 graphics_examples/.vs/opengl_example/v15/.suo
294d28578327331f7db213e22a710ef18af00ffc graphics_examples/Debug
202097a820ca9bdbae65a438b3acbecf27f34d7e graphics_examples/Debug/opengl_example.ilk
9314c35684c534c8e7557d6dbf313be5b61a3e9b graphics_examples/Release
05dc16876c7a06340c18a26d0e7265c3e8bf5cc3 graphics_examples/Release/opengl_example.iobj
a2e63f1e66712a673e1441ed002d59ea35b9e456 graphics_examples/Release/opengl_example.ipdb
f3acffd3c3e8b93069d6bcbf2acdede2c33e02c0 graphics_examples/SDL_SA_img
84811b8d84b4b75d201cfb28a54774cc4fe8776c graphics_examples/SDL_SA_img/.vs
7a805385e1d87527ed947c3701f1624987cb2e00 graphics_examples/SDL_SA_img/.vs/SDL_intro
e88c4af1c4bc27117bc0c19c746d0b8c01e7340e graphics_examples/SDL_SA_img/.vs/SDL_intro/v15
c114ff73ee3fffa6a6a0f2668fbdb6a971db36f6 graphics_examples/SDL_SA_img/.vs/SDL_intro/v15/.suo
6b5b3b7f7516a631b3df2ae743d466e81be6471d graphics_examples/SDL_SA_img/Debug
9f12ca059b121baed835e2705452904bbd9fb79f graphics_examples/SDL_SA_img/Debug/SDL_intro.ilk
7151c87c0f3dcc03145299372629e9798fbf6f6b graphics_examples/SDL_SA_img/Release
039ecb17f0dcb61f053a6693d1f92efb8b362775 graphics_examples/SDL_SA_img/Release/SDL_intro.iobj
bd9cb3a0059801e742bc4fdb841727b789362a75 graphics_examples/SDL_SA_img/Release/SDL_intro.ipdb
3f6a40301806006a694eebc088af8b03b6ef7ff8 graphics_examples/SDL_SA_img/SDL2-2.0.8
378bd8c7967254b94191969e79094c9fdedf72f5 graphics_examples/SDL_SA_img/SDL2-2.0.8/lib
cc92b0f1df8e8407a9409b53aff3388d9425d706 graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x64
6cf858caae8ce577727f7be7d57f408dcc723e5a graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x64/SDL2.dll
933a177057ed835ae51a615272a956ce586ee829 graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x64/SDL2.lib
1de4551df229ad20bcf41491c83b21a76d5ffd7d graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x64/SDL2main.lib
32e9ba969e13b69277a39757bcc84ece05263d5f graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x64/SDL2test.lib
3b2abc8eae7466631a69f8b9df88e330a4140023 graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x86
034efbd9f1fc7bf64d792a55d42ef6fee4d921ad graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x86/SDL2.lib
3fc6a5a68fff51c4f30c47fab0950859fc2ea7c1 graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x86/SDL2_image.lib
8dd5cb3690d8182221d00b357c0e137cebac1e7f graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x86/SDL2_mixer.lib
965a7dea59fad91d03d4cbbd9ffe1bc4110a0f66 graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x86/SDL2main.lib
e6c157ece31c9c88b4206bc43f051dede7ccc58b graphics_examples/SDL_SA_img/SDL2-2.0.8/lib/x86/SDL2test.lib
70ada7c33e93188f64cf4486b51b6f1fccf7535c graphics_examples/SDL_SA_img/SDL2_image-2.0.3
159d5bdbc58733c7c71ad653a0a7441ebfe87a36 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib
3fd1343f4415c9ba98dc0e85b4f38ef62fb05a2c graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64
b2c3beba048fdde27f18302c696dd7fcb53f95e6 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/LICENSE.jpeg.txt
5832d4faeb0184d429135cebcef581afb0047bbf graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/LICENSE.png.txt
c6da91257d1141b3976eb2d5d2547aabb9da069e graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/LICENSE.tiff.txt
15993f8392526c3b7b9a3482d377c1d0676be8a9 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/LICENSE.webp.txt
0daaeea25b5703bc1198ee5baed5159f813f1d64 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/LICENSE.zlib.txt
367be90d18a938c737cbbe4ad2a1cd2495f6f181 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/SDL2_image.dll
6d00aed6db965856cea7c53bb15df7462c90b6e9 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/SDL2_image.lib
ed20b97808b35aaff6dd50615ab06cd8e445e19f graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/libjpeg-9.dll
500ee212147e9e0560bdcaab495b39921a2085a8 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/libpng16-16.dll
65f4b86ed85ebfe8941ae427e5ead1f5c7549ef8 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/libtiff-5.dll
5d5b46e0f88e71367ace8ba51c30a2861c428759 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/libwebp-7.dll
2dd06e281eaf625f2f5d6e522ee6f6b6b84fd8a7 graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x64/zlib1.dll
9e05adcd11e2754652bf01b51043842406ba92ab graphics_examples/SDL_SA_img/SDL2_image-2.0.3/lib/x86
690bc4a72132c115432389d09cf0ae838382d926 graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2
62c67c4d7405fa689097e696bdd09bb4c2e88ded graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib
9ecd592a9fcfd4db5f686a0285a500c115fea092 graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64
94fd3aa692d3d4759fec1b13522d5db404e4508b graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/LICENSE.FLAC.txt
59fbf826c3b3a602bec0a23e347202be0f618aba graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/LICENSE.modplug.txt
d7bb85fc3be6d8a00bc8e875569d30deb9f0dceb graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/LICENSE.mpg123.txt
c2cb6d56eb51b788c61183f83133283f22383926 graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/LICENSE.ogg-vorbis.txt
116bb1df6f93e2afddac4d97269348f4e1531528 graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/SDL2_mixer.dll
3b96d7dda7f92493bd52f41193799a819b1819a1 graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/SDL2_mixer.lib
b5603902d5ff26bc57d0f0025757b6f0d28a06a4 graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/libFLAC-8.dll
31509378b5078d6b24c0b0a435a8d8dba7a94b2c graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/libmodplug-1.dll
d222d2dc500d2ab30b18a8dfa139ad71fa3dccfe graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/libmpg123-0.dll
7b94e60325918c92b4b764cb738dd8f5c0c3379a graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/libogg-0.dll
8d8d6537b1fc243e1926ec03a7be842b6a5d6fed graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/libvorbis-0.dll
08f8f7aa82ede72a588bb10daef73cd94dad137b graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x64/libvorbisfile-3.dll
8af939df6ef0a08558364df066eb4969dfc54c9b graphics_examples/SDL_SA_img/SDL2_mixer-2.0.2/lib/x86
50308f3b390ef5a80a3d94e251c2ad3351f92b84 graphics_examples/SDL_SA_img/SDL_intro.vcxproj
be2507870701e486845b81bbf2a525758fa0e980 graphics_examples/SDL_SA_img/SDL_intro.vcxproj.user
3a50af522be122c4f00ce545ff9fa1525ce6a79f graphics_examples/SDL_SA_img/bad.JPG
89422a137982bb820f60a4426d0a717ae497a376 graphics_examples/SDL_SA_img/bw.jpg
f7570f1a9e1a52460fddd1f9a626425966ea90aa graphics_examples/SDL_SA_img/bw.png
0962767b11741bb689f24b72c36b9eee49662e35 graphics_examples/SDL_SA_img/cont.png