This repository has been archived by the owner on Nov 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathout.txt
2141 lines (2133 loc) · 181 KB
/
out.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
D:\OpenGL>set CURRENT_DIRECTORY=D:\OpenGL\
D:\OpenGL>mkdir D:\OpenGL\win_build
D:\OpenGL>cd D:\OpenGL\win_build
D:\OpenGL\win_build>cmake -G "Ninja" -DCMAKE_C_COMPILER="C:\mingw64\bin\gcc.exe" -DCMAKE_CXX_COMPILER="C:\mingw64\bin\g++.exe" ..
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Using Win32 for window creation
-- Configuring done (2.3s)
-- Generating done (0.3s)
-- Build files have been written to: D:/OpenGL/win_build
D:\OpenGL\win_build>ninja
[1/10] Building CXX object CMakeFiles/TEngine.dir/src/scene/Scene.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/scene/Scene.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/scene/Scene.cpp.obj -MF CMakeFiles\TEngine.dir\src\scene\Scene.cpp.obj.d -o CMakeFiles/TEngine.dir/src/scene/Scene.cpp.obj -c D:/OpenGL/src/scene/Scene.cpp
D:/OpenGL/src/scene/Scene.cpp:3:10: fatal error: nlohmann/json.hpp: No such file or directory
3 | #include <nlohmann/json.hpp>
| ^~~~~~~~~~~~~~~~~~~
compilation terminated.
[2/10] Building CXX object CMakeFiles/TEngine.dir/src/scene/Model.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/scene/Model.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/scene/Model.cpp.obj -MF CMakeFiles\TEngine.dir\src\scene\Model.cpp.obj.d -o CMakeFiles/TEngine.dir/src/scene/Model.cpp.obj -c D:/OpenGL/src/scene/Model.cpp
D:/OpenGL/src/scene/Model.cpp: In member function 'void Model::processNode(aiNode*, const aiScene*)':
D:/OpenGL/src/scene/Model.cpp:63:10: error: 'decompose' is not a member of 'glm'
63 | glm::decompose(glmTransform, scale, orientation, translation, skew, perspective);
| ^~~~~~~~~
[3/10] Building CXX object CMakeFiles/TEngine.dir/src/ui/TimelineUI.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/ui/TimelineUI.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/ui/TimelineUI.cpp.obj -MF CMakeFiles\TEngine.dir\src\ui\TimelineUI.cpp.obj.d -o CMakeFiles/TEngine.dir/src/ui/TimelineUI.cpp.obj -c D:/OpenGL/src/ui/TimelineUI.cpp
D:/OpenGL/src/ui/TimelineUI.cpp:5:6: error: no declaration matches 'void TimelineUI::initialize()'
5 | void TimelineUI::initialize() {
| ^~~~~~~~~~
D:/OpenGL/src/ui/TimelineUI.cpp:5:6: note: no functions named 'void TimelineUI::initialize()'
In file included from D:/OpenGL/src/ui/TimelineUI.cpp:1:
D:/OpenGL/src/ui/TimelineUI.hpp:5:7: note: 'class TimelineUI' defined here
5 | class TimelineUI {
| ^~~~~~~~~~
D:/OpenGL/src/ui/TimelineUI.cpp: In member function 'void TimelineUI::renderPlaybackControls(Timeline&)':
D:/OpenGL/src/ui/TimelineUI.cpp:39:26: error: 'm_playbackControls' was not declared in this scope; did you mean 'renderPlaybackControls'?
39 | for (auto& control : m_playbackControls) {
| ^~~~~~~~~~~~~~~~~~
| renderPlaybackControls
D:/OpenGL/src/ui/TimelineUI.cpp: In member function 'void TimelineUI::renderTrackHeaders(const Timeline&)':
D:/OpenGL/src/ui/TimelineUI.cpp:120:39: error: 'const class Timeline' has no member named 'getTracks'; did you mean 'std::vector<Timeline::Track> Timeline::m_tracks'? (not accessible from this context)
120 | for (const auto& track : timeline.getTracks()) {
| ^~~~~~~~~
In file included from D:/OpenGL/src/ui/TimelineUI.hpp:2:
D:/OpenGL/src/animation/Timeline.hpp:32:24: note: declared private here
32 | std::vector<Track> m_tracks;
| ^~~~~~~~
D:/OpenGL/src/ui/TimelineUI.cpp: In member function 'void TimelineUI::renderKeyframes(Timeline&)':
D:/OpenGL/src/ui/TimelineUI.cpp:145:39: error: 'class Timeline' has no member named 'getTracks'; did you mean 'std::vector<Timeline::Track> Timeline::m_tracks'? (not accessible from this context)
145 | for (const auto& track : timeline.getTracks()) {
| ^~~~~~~~~
D:/OpenGL/src/animation/Timeline.hpp:32:24: note: declared private here
32 | std::vector<Track> m_tracks;
| ^~~~~~~~
D:/OpenGL/src/ui/TimelineUI.cpp:174:17: error: 'ImRect' was not declared in this scope; did you mean 'ImVec4'?
174 | ImRect bounds(
| ^~~~~~
| ImVec4
D:/OpenGL/src/ui/TimelineUI.cpp:179:48: error: 'bounds' was not declared in this scope; did you mean 'roundl'?
179 | if (ImGui::IsMouseHoveringRect(bounds.Min, bounds.Max)) {
| ^~~~~~
| roundl
[4/10] Building CXX object CMakeFiles/TEngine.dir/src/Main.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/Main.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/Main.cpp.obj -MF CMakeFiles\TEngine.dir\src\Main.cpp.obj.d -o CMakeFiles/TEngine.dir/src/Main.cpp.obj -c D:/OpenGL/src/Main.cpp
In file included from D:/OpenGL/src/scene/Scene.hpp:3,
from D:/OpenGL/src/core/Application.hpp:3,
from D:/OpenGL/src/Main.cpp:1:
D:/OpenGL/src/scene/Camera.hpp:26:24: error: 'CameraShot' has not been declared
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:26:41: error: expected ',' or '...' before 'type'
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~
D:/OpenGL/src/scene/Camera.hpp:57:17: error: 'CameraShot' was not declared in this scope; did you mean 'addCameraShot'?
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~
| addCameraShot
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 1 is invalid
57 | std::vector<CameraShot> m_shots;
| ^
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 2 is invalid
D:/OpenGL/src/scene/Camera.hpp:57:10: error: '<expression error>' in namespace 'std' does not name a type
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:58:5: error: 'CameraShot' does not name a type; did you mean 'Camera'?
58 | CameraShot* m_currentShot{nullptr};
| ^~~~~~~~~~
| Camera
D:/OpenGL/src/core/Application.hpp:17:5: error: 'Window' does not name a type
17 | Window& getWindow() { return *m_window; }
| ^~~~~~
D:/OpenGL/src/core/Application.hpp:29:21: error: 'Window' was not declared in this scope
29 | std::unique_ptr<Window> m_window;
| ^~~~~~
D:/OpenGL/src/core/Application.hpp:29:27: error: template argument 1 is invalid
29 | std::unique_ptr<Window> m_window;
| ^
D:/OpenGL/src/core/Application.hpp:29:27: error: template argument 2 is invalid
D:/OpenGL/src/core/Application.hpp:29:10: error: '<expression error>' in namespace 'std' does not name a type
29 | std::unique_ptr<Window> m_window;
| ^~~~~~~~~~~~~~~~~~
[5/10] Building CXX object CMakeFiles/TEngine.dir/src/ui/UI.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/ui/UI.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/ui/UI.cpp.obj -MF CMakeFiles\TEngine.dir\src\ui\UI.cpp.obj.d -o CMakeFiles/TEngine.dir/src/ui/UI.cpp.obj -c D:/OpenGL/src/ui/UI.cpp
In file included from D:/OpenGL/src/scene/Scene.hpp:3,
from D:/OpenGL/src/ui/UI.hpp:3,
from D:/OpenGL/src/ui/UI.cpp:1:
D:/OpenGL/src/scene/Camera.hpp:26:24: error: 'CameraShot' has not been declared
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:26:41: error: expected ',' or '...' before 'type'
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~
D:/OpenGL/src/scene/Camera.hpp:57:17: error: 'CameraShot' was not declared in this scope; did you mean 'addCameraShot'?
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~
| addCameraShot
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 1 is invalid
57 | std::vector<CameraShot> m_shots;
| ^
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 2 is invalid
D:/OpenGL/src/scene/Camera.hpp:57:10: error: '<expression error>' in namespace 'std' does not name a type
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:58:5: error: 'CameraShot' does not name a type; did you mean 'Camera'?
58 | CameraShot* m_currentShot{nullptr};
| ^~~~~~~~~~
| Camera
D:/OpenGL/src/ui/UI.cpp: In member function 'bool UI::initialize()':
D:/OpenGL/src/ui/UI.cpp:20:18: error: 'class TimelineUI' has no member named 'initialize'
20 | m_timelineUI.initialize();
| ^~~~~~~~~~
D:/OpenGL/src/ui/UI.cpp: In member function 'void UI::renderSceneHierarchy(Scene&)':
D:/OpenGL/src/ui/UI.cpp:112:65: error: invalid conversion from 'const float*' to 'float*' [-fpermissive]
112 | ImGui::DragFloat3("Position", glm::value_ptr(object.transform.position), 0.1f);
| ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| const float*
In file included from D:/OpenGL/src/libs.hpp:25,
from D:/OpenGL/src/core/Types.hpp:7,
from D:/OpenGL/src/ui/UI.hpp:2:
D:/OpenGL/external/imgui-1.91.0/imgui.h:598:65: note: initializing argument 2 of 'bool ImGui::DragFloat3(const char*, float*, float, float, float, const char*, ImGuiSliderFlags)'
598 | IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0);
| ~~~~~~^~~~
D:/OpenGL/src/ui/UI.cpp:113:65: error: invalid conversion from 'const float*' to 'float*' [-fpermissive]
113 | ImGui::DragFloat3("Rotation", glm::value_ptr(object.transform.rotation), 0.1f);
| ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| const float*
D:/OpenGL/external/imgui-1.91.0/imgui.h:598:65: note: initializing argument 2 of 'bool ImGui::DragFloat3(const char*, float*, float, float, float, const char*, ImGuiSliderFlags)'
598 | IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0);
| ~~~~~~^~~~
D:/OpenGL/src/ui/UI.cpp:114:62: error: invalid conversion from 'const float*' to 'float*' [-fpermissive]
114 | ImGui::DragFloat3("Scale", glm::value_ptr(object.transform.scale), 0.01f);
| ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
| |
| const float*
D:/OpenGL/external/imgui-1.91.0/imgui.h:598:65: note: initializing argument 2 of 'bool ImGui::DragFloat3(const char*, float*, float, float, float, const char*, ImGuiSliderFlags)'
598 | IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0);
| ~~~~~~^~~~
D:/OpenGL/src/ui/UI.cpp: In member function 'void UI::renderProperties(Scene&)':
D:/OpenGL/src/ui/UI.cpp:129:26: error: 'Application' has not been declared
129 | auto& settings = Application::getInstance().getRenderer().getSettings();
| ^~~~~~~~~~~
D:/OpenGL/src/ui/UI.cpp: In member function 'void UI::renderTimeline(Scene&)':
D:/OpenGL/src/ui/UI.cpp:154:31: error: 'class Scene' has no member named 'getTimeline'
154 | m_timelineUI.render(scene.getTimeline());
| ^~~~~~~~~~~
D:/OpenGL/src/ui/UI.cpp: In member function 'void UI::renderFileExplorer()':
D:/OpenGL/src/ui/UI.cpp:186:21: error: 'scene' was not declared in this scope; did you mean 'Scene'?
186 | scene.loadModel(path.string());
| ^~~~~
| Scene
D:/OpenGL/src/ui/UI.cpp: In member function 'void UI::handleCameraControls(Camera&)':
D:/OpenGL/src/ui/UI.cpp:197:33: error: 'class Camera' has no member named 'getPosition'; did you mean 'setPosition'?
197 | glm::vec3 position = camera.getPosition();
| ^~~~~~~~~~~
| setPosition
D:/OpenGL/src/ui/UI.cpp:202:24: error: 'class Camera' has no member named 'getFOV'; did you mean 'setFOV'?
202 | float fov = camera.getFOV();
| ^~~~~~
| setFOV
D:/OpenGL/src/ui/UI.cpp:208:34: error: 'class Camera' has no member named 'isDepthOfFieldEnabled'; did you mean 'bool Camera::m_depthOfFieldEnabled'? (not accessible from this context)
208 | bool dofEnabled = camera.isDepthOfFieldEnabled();
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:49:10: note: declared private here
49 | bool m_depthOfFieldEnabled{false};
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/src/ui/UI.cpp:214:42: error: 'class Camera' has no member named 'getFocusDistance'; did you mean 'setFocusDistance'?
214 | float focusDistance = camera.getFocusDistance();
| ^~~~~~~~~~~~~~~~
| setFocusDistance
D:/OpenGL/src/ui/UI.cpp:215:37: error: 'class Camera' has no member named 'getAperture'; did you mean 'setAperture'?
215 | float aperture = camera.getAperture();
| ^~~~~~~~~~~
| setAperture
[6/10] Building CXX object CMakeFiles/TEngine.dir/src/animation/Export.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/animation/Export.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/animation/Export.cpp.obj -MF CMakeFiles\TEngine.dir\src\animation\Export.cpp.obj.d -o CMakeFiles/TEngine.dir/src/animation/Export.cpp.obj -c D:/OpenGL/src/animation/Export.cpp
D:/OpenGL/src/animation/Export.cpp: In member function 'void AnimationExporter::createAnimationChannels(aiScene*, const Timeline&, float)':
D:/OpenGL/src/animation/Export.cpp:99:35: error: 'const class Timeline' has no member named 'getTracks'; did you mean 'std::vector<Timeline::Track> Timeline::m_tracks'? (not accessible from this context)
99 | const auto& tracks = timeline.getTracks();
| ^~~~~~~~~
In file included from D:/OpenGL/src/animation/Export.hpp:2,
from D:/OpenGL/src/animation/Export.cpp:1:
D:/OpenGL/src/animation/Timeline.hpp:32:24: note: declared private here
32 | std::vector<Track> m_tracks;
| ^~~~~~~~
[7/10] Building CXX object CMakeFiles/TEngine.dir/src/core/Application.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/core/Application.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/core/Application.cpp.obj -MF CMakeFiles\TEngine.dir\src\core\Application.cpp.obj.d -o CMakeFiles/TEngine.dir/src/core/Application.cpp.obj -c D:/OpenGL/src/core/Application.cpp
In file included from D:/OpenGL/src/scene/Scene.hpp:3,
from D:/OpenGL/src/core/Application.hpp:3,
from D:/OpenGL/src/core/Application.cpp:1:
D:/OpenGL/src/scene/Camera.hpp:26:24: error: 'CameraShot' has not been declared
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:26:41: error: expected ',' or '...' before 'type'
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~
D:/OpenGL/src/scene/Camera.hpp:57:17: error: 'CameraShot' was not declared in this scope; did you mean 'addCameraShot'?
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~
| addCameraShot
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 1 is invalid
57 | std::vector<CameraShot> m_shots;
| ^
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 2 is invalid
D:/OpenGL/src/scene/Camera.hpp:57:10: error: '<expression error>' in namespace 'std' does not name a type
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:58:5: error: 'CameraShot' does not name a type; did you mean 'Camera'?
58 | CameraShot* m_currentShot{nullptr};
| ^~~~~~~~~~
| Camera
D:/OpenGL/src/core/Application.hpp:17:5: error: 'Window' does not name a type
17 | Window& getWindow() { return *m_window; }
| ^~~~~~
D:/OpenGL/src/core/Application.hpp:29:21: error: 'Window' was not declared in this scope
29 | std::unique_ptr<Window> m_window;
| ^~~~~~
D:/OpenGL/src/core/Application.hpp:29:27: error: template argument 1 is invalid
29 | std::unique_ptr<Window> m_window;
| ^
D:/OpenGL/src/core/Application.hpp:29:27: error: template argument 2 is invalid
D:/OpenGL/src/core/Application.hpp:29:10: error: '<expression error>' in namespace 'std' does not name a type
29 | std::unique_ptr<Window> m_window;
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/src/core/Application.cpp: In member function 'bool Application::initialize()':
D:/OpenGL/src/core/Application.cpp:14:5: error: 'm_window' was not declared in this scope
14 | m_window = std::make_unique<Window>();
| ^~~~~~~~
D:/OpenGL/src/core/Application.cpp:14:33: error: 'Window' was not declared in this scope
14 | m_window = std::make_unique<Window>();
| ^~~~~~
D:/OpenGL/src/core/Application.cpp:14:40: error: no matching function for call to 'make_unique<<expression error> >()'
14 | m_window = std::make_unique<Window>();
| ~~~~~~~~~~~~~~~~~~~~~~~~^~
In file included from C:/mingw64/include/c++/14.2.0/memory:78,
from D:/OpenGL/src/core/Types.hpp:6,
from D:/OpenGL/src/scene/Scene.hpp:2:
C:/mingw64/include/c++/14.2.0/bits/unique_ptr.h:1075:5: note: candidate: 'template<class _Tp, class ... _Args> constexpr std::__detail::__unique_ptr_t<_Tp> std::make_unique(_Args&& ...)'
1075 | make_unique(_Args&&... __args)
| ^~~~~~~~~~~
C:/mingw64/include/c++/14.2.0/bits/unique_ptr.h:1075:5: note: template argument deduction/substitution failed:
D:/OpenGL/src/core/Application.cpp:14:40: error: template argument 1 is invalid
14 | m_window = std::make_unique<Window>();
| ~~~~~~~~~~~~~~~~~~~~~~~~^~
C:/mingw64/include/c++/14.2.0/bits/unique_ptr.h:1090:5: note: candidate: 'template<class _Tp> constexpr std::__detail::__unique_ptr_array_t<_Tp> std::make_unique(size_t)'
1090 | make_unique(size_t __num)
| ^~~~~~~~~~~
C:/mingw64/include/c++/14.2.0/bits/unique_ptr.h:1090:5: note: candidate expects 1 argument, 0 provided
C:/mingw64/include/c++/14.2.0/bits/unique_ptr.h:1100:5: note: candidate: 'template<class _Tp, class ... _Args> std::__detail::__invalid_make_unique_t<_Tp> std::make_unique(_Args&& ...)' (deleted)
1100 | make_unique(_Args&&...) = delete;
| ^~~~~~~~~~~
C:/mingw64/include/c++/14.2.0/bits/unique_ptr.h:1100:5: note: template argument deduction/substitution failed:
D:/OpenGL/src/core/Application.cpp:14:40: error: template argument 1 is invalid
14 | m_window = std::make_unique<Window>();
| ~~~~~~~~~~~~~~~~~~~~~~~~^~
D:/OpenGL/src/core/Application.cpp: In member function 'void Application::run()':
D:/OpenGL/src/core/Application.cpp:40:28: error: 'm_window' was not declared in this scope
40 | while (m_isRunning && !m_window->shouldClose()) {
| ^~~~~~~~
D:/OpenGL/src/core/Application.cpp: In member function 'void Application::update(float)':
D:/OpenGL/src/core/Application.cpp:52:5: error: 'm_window' was not declared in this scope
52 | m_window->update();
| ^~~~~~~~
D:/OpenGL/src/core/Application.cpp: In member function 'void Application::render()':
D:/OpenGL/src/core/Application.cpp:58:5: error: 'm_window' was not declared in this scope
58 | m_window->swapBuffers();
| ^~~~~~~~
D:/OpenGL/src/core/Application.cpp: In member function 'void Application::shutdown()':
D:/OpenGL/src/core/Application.cpp:64:5: error: 'm_window' was not declared in this scope
64 | m_window->shutdown();
| ^~~~~~~~
[8/10] Building CXX object CMakeFiles/TEngine.dir/src/renderer/Renderer.cpp.obj
FAILED: CMakeFiles/TEngine.dir/src/renderer/Renderer.cpp.obj
C:\mingw64\bin\g++.exe -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -D_CRT_SECURE_NO_WARNINGS -D_WIN32_WINNT=0x0601 -ID:/OpenGL/external/AntTweakBar-1.16/include -ID:/OpenGL/external/glfw-3.3/include -ID:/OpenGL/external/glm-0.9.9.7 -ID:/OpenGL/external/glew-2.1.0/include -ID:/OpenGL/external/assimp-3.0.1270/include -ID:/OpenGL/external/bullet-2.81-rev2613/src -ID:/OpenGL/win_build/_deps/freetype-src/include -ID:/OpenGL/win_build/_deps/freetype-build/include -ID:/OpenGL/win_build/_deps/lunasvg-src/include -ID:/OpenGL/win_build/_deps/lunasvg-build/include -ID:/OpenGL/external/imgui-1.91.0 -ID:/OpenGL/external/imgui-1.91.0/backends -ID:/OpenGL/external/imgui-1.91.0/misc/freetype -ID:/OpenGL/external/stb/include -ID:/OpenGL/external/json/include -ID:/OpenGL/external/crash-handler -ID:/OpenGL/. -D_FORTIFY_SOURCE=2 -D_WIN32_WINNT=0x0601 -DWIN32_WINNT=0x0601 -DWINVER=0x0601 -ftree-vectorize -fopt-info-vec -funroll-loops -fomit-frame-pointer -fstack-protector-strong -fpic -fpie -pie -std=gnu++23 -Wdeprecated-declarations -pthread -mavx2 -Ofast --static -fcf-protection=full -mshstk -march=native -MD -MT CMakeFiles/TEngine.dir/src/renderer/Renderer.cpp.obj -MF CMakeFiles\TEngine.dir\src\renderer\Renderer.cpp.obj.d -o CMakeFiles/TEngine.dir/src/renderer/Renderer.cpp.obj -c D:/OpenGL/src/renderer/Renderer.cpp
In file included from D:/OpenGL/src/renderer/Renderer.cpp:3:
D:/OpenGL/external/stb/include/stb_image.h:978:37: error: macro "stbi__err" requires 2 arguments, but only 1 given
978 | static int stbi__err(const char *str)
| ^
In file included from D:/OpenGL/src/libs.hpp:24,
from D:/OpenGL/src/core/Types.hpp:7,
from D:/OpenGL/src/renderer/Renderer.hpp:2,
from D:/OpenGL/src/renderer/Renderer.cpp:1:
D:/OpenGL/external/stb/include/stb_image.h:1095:12: note: macro "stbi__err" defined here
1095 | #define stbi__err(x,y) stbi__err(x)
| ^~~~~~~~~
In file included from D:/OpenGL/src/scene/Scene.hpp:3,
from D:/OpenGL/src/renderer/Renderer.hpp:3:
D:/OpenGL/src/scene/Camera.hpp:26:24: error: 'CameraShot' has not been declared
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:26:41: error: expected ',' or '...' before 'type'
26 | void addCameraShot(CameraShot::Type type, float duration);
| ^~~~
D:/OpenGL/src/scene/Camera.hpp:57:17: error: 'CameraShot' was not declared in this scope; did you mean 'addCameraShot'?
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~
| addCameraShot
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 1 is invalid
57 | std::vector<CameraShot> m_shots;
| ^
D:/OpenGL/src/scene/Camera.hpp:57:27: error: template argument 2 is invalid
D:/OpenGL/src/scene/Camera.hpp:57:10: error: '<expression error>' in namespace 'std' does not name a type
57 | std::vector<CameraShot> m_shots;
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/src/scene/Camera.hpp:58:5: error: 'CameraShot' does not name a type; did you mean 'Camera'?
58 | CameraShot* m_currentShot{nullptr};
| ^~~~~~~~~~
| Camera
D:/OpenGL/external/stb/include/stb_image.h:765:12: error: redefinition of 'int stbi__sse2_available()'
765 | static int stbi__sse2_available(void)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:765:12: note: 'int stbi__sse2_available()' previously defined here
765 | static int stbi__sse2_available(void)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:820:3: error: conflicting declaration 'typedef struct stbi__context stbi__context'
820 | } stbi__context;
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:820:3: note: previous declaration as 'typedef struct stbi__context stbi__context'
820 | } stbi__context;
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:826:13: error: redefinition of 'void stbi__start_mem(stbi__context*, const stbi_uc*, int)'
826 | static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:826:13: note: 'void stbi__start_mem(stbi__context*, const stbi_uc*, int)' previously defined here
826 | static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:836:13: error: redefinition of 'void stbi__start_callbacks(stbi__context*, stbi_io_callbacks*, void*)'
836 | static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:836:13: note: 'void stbi__start_callbacks(stbi__context*, stbi_io_callbacks*, void*)' previously defined here
836 | static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:850:12: error: redefinition of 'int stbi__stdio_read(void*, char*, int)'
850 | static int stbi__stdio_read(void *user, char *data, int size)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:850:12: note: 'int stbi__stdio_read(void*, char*, int)' previously defined here
850 | static int stbi__stdio_read(void *user, char *data, int size)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:855:13: error: redefinition of 'void stbi__stdio_skip(void*, int)'
855 | static void stbi__stdio_skip(void *user, int n)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:855:13: note: 'void stbi__stdio_skip(void*, int)' previously defined here
855 | static void stbi__stdio_skip(void *user, int n)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:865:12: error: redefinition of 'int stbi__stdio_eof(void*)'
865 | static int stbi__stdio_eof(void *user)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:865:12: note: 'int stbi__stdio_eof(void*)' previously defined here
865 | static int stbi__stdio_eof(void *user)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:870:26: error: redefinition of 'stbi_io_callbacks stbi__stdio_callbacks'
870 | static stbi_io_callbacks stbi__stdio_callbacks =
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:870:26: note: 'stbi_io_callbacks stbi__stdio_callbacks' previously defined here
870 | static stbi_io_callbacks stbi__stdio_callbacks =
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:877:13: error: redefinition of 'void stbi__start_file(stbi__context*, FILE*)'
877 | static void stbi__start_file(stbi__context *s, FILE *f)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:877:13: note: 'void stbi__start_file(stbi__context*, FILE*)' previously defined here
877 | static void stbi__start_file(stbi__context *s, FILE *f)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:886:13: error: redefinition of 'void stbi__rewind(stbi__context*)'
886 | static void stbi__rewind(stbi__context *s)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:886:13: note: 'void stbi__rewind(stbi__context*)' previously defined here
886 | static void stbi__rewind(stbi__context *s)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:897:4: error: 'STBI_ORDER_RGB' conflicts with a previous declaration
897 | STBI_ORDER_RGB,
| ^~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:897:4: note: previous declaration '<unnamed enum> STBI_ORDER_RGB'
897 | STBI_ORDER_RGB,
| ^~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:898:4: error: 'STBI_ORDER_BGR' conflicts with a previous declaration
898 | STBI_ORDER_BGR
| ^~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:898:4: note: previous declaration '<unnamed enum> STBI_ORDER_BGR'
898 | STBI_ORDER_BGR
| ^~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:906:3: error: conflicting declaration 'typedef struct stbi__result_info stbi__result_info'
906 | } stbi__result_info;
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:906:3: note: previous declaration as 'typedef struct stbi__result_info stbi__result_info'
906 | } stbi__result_info;
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:970:13: error: redefinition of 'const char* stbi__g_failure_reason'
970 | const char *stbi__g_failure_reason;
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:970:13: note: 'const char* stbi__g_failure_reason' previously declared here
970 | const char *stbi__g_failure_reason;
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:972:21: error: redefinition of 'const char* stbi_failure_reason()'
972 | STBIDEF const char *stbi_failure_reason(void)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:972:21: note: 'const char* stbi_failure_reason()' previously defined here
972 | STBIDEF const char *stbi_failure_reason(void)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:978:12: error: 'int stbi__err' redeclared as different kind of entity
978 | static int stbi__err(const char *str)
| ^~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:978:12: note: previous declaration 'int stbi__err(const char*)'
978 | static int stbi__err(const char *str)
| ^~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:980:29: error: 'str' was not declared in this scope; did you mean 'std'?
980 | stbi__g_failure_reason = str;
| ^~~
| std
D:/OpenGL/external/stb/include/stb_image.h:980:32: error: expected '}' before ';' token
980 | stbi__g_failure_reason = str;
| ^
D:/OpenGL/external/stb/include/stb_image.h:979:1: note: to match this '{'
979 | {
| ^
D:/OpenGL/external/stb/include/stb_image.h:981:4: error: expected unqualified-id before 'return'
981 | return 0;
| ^~~~~~
D:/OpenGL/external/stb/include/stb_image.h:982:1: error: expected declaration before '}' token
982 | }
| ^
D:/OpenGL/external/stb/include/stb_image.h:985:14: error: redefinition of 'void* stbi__malloc(size_t)'
985 | static void *stbi__malloc(size_t size)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:985:14: note: 'void* stbi__malloc(size_t)' previously defined here
985 | static void *stbi__malloc(size_t size)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1002:12: error: redefinition of 'int stbi__addsizes_valid(int, int)'
1002 | static int stbi__addsizes_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1002:12: note: 'int stbi__addsizes_valid(int, int)' previously defined here
1002 | static int stbi__addsizes_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1014:12: error: redefinition of 'int stbi__mul2sizes_valid(int, int)'
1014 | static int stbi__mul2sizes_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1014:12: note: 'int stbi__mul2sizes_valid(int, int)' previously defined here
1014 | static int stbi__mul2sizes_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1024:12: error: redefinition of 'int stbi__mad2sizes_valid(int, int, int)'
1024 | static int stbi__mad2sizes_valid(int a, int b, int add)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1024:12: note: 'int stbi__mad2sizes_valid(int, int, int)' previously defined here
1024 | static int stbi__mad2sizes_valid(int a, int b, int add)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1031:12: error: redefinition of 'int stbi__mad3sizes_valid(int, int, int, int)'
1031 | static int stbi__mad3sizes_valid(int a, int b, int c, int add)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1031:12: note: 'int stbi__mad3sizes_valid(int, int, int, int)' previously defined here
1031 | static int stbi__mad3sizes_valid(int a, int b, int c, int add)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1039:12: error: redefinition of 'int stbi__mad4sizes_valid(int, int, int, int, int)'
1039 | static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1039:12: note: 'int stbi__mad4sizes_valid(int, int, int, int, int)' previously defined here
1039 | static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1048:14: error: redefinition of 'void* stbi__malloc_mad2(int, int, int)'
1048 | static void *stbi__malloc_mad2(int a, int b, int add)
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1048:14: note: 'void* stbi__malloc_mad2(int, int, int)' previously defined here
1048 | static void *stbi__malloc_mad2(int a, int b, int add)
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1055:14: error: redefinition of 'void* stbi__malloc_mad3(int, int, int, int)'
1055 | static void *stbi__malloc_mad3(int a, int b, int c, int add)
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1055:14: note: 'void* stbi__malloc_mad3(int, int, int, int)' previously defined here
1055 | static void *stbi__malloc_mad3(int a, int b, int c, int add)
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1062:14: error: redefinition of 'void* stbi__malloc_mad4(int, int, int, int, int)'
1062 | static void *stbi__malloc_mad4(int a, int b, int c, int d, int add)
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1062:14: note: 'void* stbi__malloc_mad4(int, int, int, int, int)' previously defined here
1062 | static void *stbi__malloc_mad4(int a, int b, int c, int d, int add)
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1070:12: error: redefinition of 'int stbi__addints_valid(int, int)'
1070 | static int stbi__addints_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1070:12: note: 'int stbi__addints_valid(int, int)' previously defined here
1070 | static int stbi__addints_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1078:12: error: redefinition of 'int stbi__mul2shorts_valid(int, int)'
1078 | static int stbi__mul2shorts_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1078:12: note: 'int stbi__mul2shorts_valid(int, int)' previously defined here
1078 | static int stbi__mul2shorts_valid(int a, int b)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1101:14: error: redefinition of 'void stbi_image_free(void*)'
1101 | STBIDEF void stbi_image_free(void *retval_from_stbi_load)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1101:14: note: 'void stbi_image_free(void*)' previously defined here
1101 | STBIDEF void stbi_image_free(void *retval_from_stbi_load)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1114:12: error: redefinition of 'int stbi__vertically_flip_on_load_global'
1114 | static int stbi__vertically_flip_on_load_global = 0;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1114:12: note: 'int stbi__vertically_flip_on_load_global' previously defined here
1114 | static int stbi__vertically_flip_on_load_global = 0;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1116:14: error: redefinition of 'void stbi_set_flip_vertically_on_load(int)'
1116 | STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1116:14: note: 'void stbi_set_flip_vertically_on_load(int)' previously defined here
1116 | STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1124:30: error: redefinition of 'int stbi__vertically_flip_on_load_local'
1124 | static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1124:30: note: 'int stbi__vertically_flip_on_load_local' previously declared here
1124 | static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1124:67: error: redefinition of 'int stbi__vertically_flip_on_load_set'
1124 | static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1124:67: note: 'int stbi__vertically_flip_on_load_set' previously declared here
1124 | static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1126:14: error: redefinition of 'void stbi_set_flip_vertically_on_load_thread(int)'
1126 | STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1126:14: note: 'void stbi_set_flip_vertically_on_load_thread(int)' previously defined here
1126 | STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1137:14: error: redefinition of 'void* stbi__load_main(stbi__context*, int*, int*, int*, int, stbi__result_info*, int)'
1137 | static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1137:14: note: 'void* stbi__load_main(stbi__context*, int*, int*, int*, int, stbi__result_info*, int)' previously defined here
1137 | static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1190:17: error: redefinition of 'stbi_uc* stbi__convert_16_to_8(stbi__uint16*, int, int, int)'
1190 | static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1190:17: note: 'stbi_uc* stbi__convert_16_to_8(stbi__uint16*, int, int, int)' previously defined here
1190 | static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1206:22: error: redefinition of 'stbi__uint16* stbi__convert_8_to_16(stbi_uc*, int, int, int)'
1206 | static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1206:22: note: 'stbi__uint16* stbi__convert_8_to_16(stbi_uc*, int, int, int)' previously defined here
1206 | static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1222:13: error: redefinition of 'void stbi__vertical_flip(void*, int, int, int)'
1222 | static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1222:13: note: 'void stbi__vertical_flip(void*, int, int, int)' previously defined here
1222 | static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1247:13: error: redefinition of 'void stbi__vertical_flip_slices(void*, int, int, int, int)'
1247 | static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1247:13: note: 'void stbi__vertical_flip_slices(void*, int, int, int, int)' previously defined here
1247 | static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1260:23: error: redefinition of 'unsigned char* stbi__load_and_postprocess_8bit(stbi__context*, int*, int*, int*, int)'
1260 | static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1260:23: note: 'unsigned char* stbi__load_and_postprocess_8bit(stbi__context*, int*, int*, int*, int)' previously defined here
1260 | static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1286:22: error: redefinition of 'stbi__uint16* stbi__load_and_postprocess_16bit(stbi__context*, int*, int*, int*, int)'
1286 | static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1286:22: note: 'stbi__uint16* stbi__load_and_postprocess_16bit(stbi__context*, int*, int*, int*, int)' previously defined here
1286 | static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1314:13: error: redefinition of 'void stbi__float_postprocess(float*, int*, int*, int*, int)'
1314 | static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1314:13: note: 'void stbi__float_postprocess(float*, int*, int*, int*, int)' previously defined here
1314 | static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1337:14: error: redefinition of 'FILE* stbi__fopen(const char*, const char*)'
1337 | static FILE *stbi__fopen(char const *filename, char const *mode)
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1337:14: note: 'FILE* stbi__fopen(const char*, const char*)' previously defined here
1337 | static FILE *stbi__fopen(char const *filename, char const *mode)
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1366:18: error: redefinition of 'stbi_uc* stbi_load(const char*, int*, int*, int*, int)'
1366 | STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1366:18: note: 'stbi_uc* stbi_load(const char*, int*, int*, int*, int)' previously defined here
1366 | STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1376:18: error: redefinition of 'stbi_uc* stbi_load_from_file(FILE*, int*, int*, int*, int)'
1376 | STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1376:18: note: 'stbi_uc* stbi_load_from_file(FILE*, int*, int*, int*, int)' previously defined here
1376 | STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1389:23: error: redefinition of 'stbi__uint16* stbi_load_from_file_16(FILE*, int*, int*, int*, int)'
1389 | STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1389:23: note: 'stbi__uint16* stbi_load_from_file_16(FILE*, int*, int*, int*, int)' previously defined here
1389 | STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1402:18: error: redefinition of 'stbi_us* stbi_load_16(const char*, int*, int*, int*, int)'
1402 | STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1402:18: note: 'stbi_us* stbi_load_16(const char*, int*, int*, int*, int)' previously defined here
1402 | STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1415:18: error: redefinition of 'stbi_us* stbi_load_16_from_memory(const stbi_uc*, int, int*, int*, int*, int)'
1415 | STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels)
| ^~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1415:18: note: 'stbi_us* stbi_load_16_from_memory(const stbi_uc*, int, int*, int*, int*, int)' previously defined here
1415 | STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels)
| ^~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1422:18: error: redefinition of 'stbi_us* stbi_load_16_from_callbacks(const stbi_io_callbacks*, void*, int*, int*, int*, int)'
1422 | STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1422:18: note: 'stbi_us* stbi_load_16_from_callbacks(const stbi_io_callbacks*, void*, int*, int*, int*, int)' previously defined here
1422 | STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1429:18: error: redefinition of 'stbi_uc* stbi_load_from_memory(const stbi_uc*, int, int*, int*, int*, int)'
1429 | STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1429:18: note: 'stbi_uc* stbi_load_from_memory(const stbi_uc*, int, int*, int*, int*, int)' previously defined here
1429 | STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1436:18: error: redefinition of 'stbi_uc* stbi_load_from_callbacks(const stbi_io_callbacks*, void*, int*, int*, int*, int)'
1436 | STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1436:18: note: 'stbi_uc* stbi_load_from_callbacks(const stbi_io_callbacks*, void*, int*, int*, int*, int)' previously defined here
1436 | STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1444:18: error: redefinition of 'stbi_uc* stbi_load_gif_from_memory(const stbi_uc*, int, int**, int*, int*, int*, int*, int)'
1444 | STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1444:18: note: 'stbi_uc* stbi_load_gif_from_memory(const stbi_uc*, int, int**, int*, int*, int*, int*, int)' previously defined here
1444 | STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1460:15: error: redefinition of 'float* stbi__loadf_main(stbi__context*, int*, int*, int*, int)'
1460 | static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1460:15: note: 'float* stbi__loadf_main(stbi__context*, int*, int*, int*, int)' previously defined here
1460 | static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1478:16: error: redefinition of 'float* stbi_loadf_from_memory(const stbi_uc*, int, int*, int*, int*, int)'
1478 | STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1478:16: note: 'float* stbi_loadf_from_memory(const stbi_uc*, int, int*, int*, int*, int)' previously defined here
1478 | STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1485:16: error: redefinition of 'float* stbi_loadf_from_callbacks(const stbi_io_callbacks*, void*, int*, int*, int*, int)'
1485 | STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1485:16: note: 'float* stbi_loadf_from_callbacks(const stbi_io_callbacks*, void*, int*, int*, int*, int)' previously defined here
1485 | STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1493:16: error: redefinition of 'float* stbi_loadf(const char*, int*, int*, int*, int)'
1493 | STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1493:16: note: 'float* stbi_loadf(const char*, int*, int*, int*, int)' previously defined here
1493 | STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1503:16: error: redefinition of 'float* stbi_loadf_from_file(FILE*, int*, int*, int*, int)'
1503 | STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1503:16: note: 'float* stbi_loadf_from_file(FILE*, int*, int*, int*, int)' previously defined here
1503 | STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1517:13: error: redefinition of 'int stbi_is_hdr_from_memory(const stbi_uc*, int)'
1517 | STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len)
| ^~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1517:13: note: 'int stbi_is_hdr_from_memory(const stbi_uc*, int)' previously defined here
1517 | STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len)
| ^~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1531:18: error: redefinition of 'int stbi_is_hdr(const char*)'
1531 | STBIDEF int stbi_is_hdr (char const *filename)
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1531:18: note: 'int stbi_is_hdr(const char*)' previously defined here
1531 | STBIDEF int stbi_is_hdr (char const *filename)
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1542:13: error: redefinition of 'int stbi_is_hdr_from_file(FILE*)'
1542 | STBIDEF int stbi_is_hdr_from_file(FILE *f)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1542:13: note: 'int stbi_is_hdr_from_file(FILE*)' previously defined here
1542 | STBIDEF int stbi_is_hdr_from_file(FILE *f)
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1559:18: error: redefinition of 'int stbi_is_hdr_from_callbacks(const stbi_io_callbacks*, void*)'
1559 | STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1559:18: note: 'int stbi_is_hdr_from_callbacks(const stbi_io_callbacks*, void*)' previously defined here
1559 | STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1573:14: error: redefinition of 'float stbi__l2h_gamma'
1573 | static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f;
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1573:14: note: 'float stbi__l2h_gamma' previously defined here
1573 | static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f;
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1573:36: error: redefinition of 'float stbi__l2h_scale'
1573 | static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f;
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1573:36: note: 'float stbi__l2h_scale' previously defined here
1573 | static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f;
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1575:16: error: redefinition of 'void stbi_ldr_to_hdr_gamma(float)'
1575 | STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1575:16: note: 'void stbi_ldr_to_hdr_gamma(float)' previously defined here
1575 | STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1576:16: error: redefinition of 'void stbi_ldr_to_hdr_scale(float)'
1576 | STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1576:16: note: 'void stbi_ldr_to_hdr_scale(float)' previously defined here
1576 | STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1579:14: error: redefinition of 'float stbi__h2l_gamma_i'
1579 | static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f;
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1579:14: note: 'float stbi__h2l_gamma_i' previously defined here
1579 | static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f;
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1579:43: error: redefinition of 'float stbi__h2l_scale_i'
1579 | static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f;
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1579:43: note: 'float stbi__h2l_scale_i' previously defined here
1579 | static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f;
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1581:16: error: redefinition of 'void stbi_hdr_to_ldr_gamma(float)'
1581 | STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1581:16: note: 'void stbi_hdr_to_ldr_gamma(float)' previously defined here
1581 | STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1582:16: error: redefinition of 'void stbi_hdr_to_ldr_scale(float)'
1582 | STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1582:16: note: 'void stbi_hdr_to_ldr_scale(float)' previously defined here
1582 | STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; }
| ^~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1592:20: error: 'STBI__SCAN_load' conflicts with a previous declaration
1592 | STBI__SCAN_load=0,
| ^
D:/OpenGL/external/stb/include/stb_image.h:1592:4: note: previous declaration '<unnamed enum> STBI__SCAN_load'
1592 | STBI__SCAN_load=0,
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1593:4: error: 'STBI__SCAN_type' conflicts with a previous declaration
1593 | STBI__SCAN_type,
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1593:4: note: previous declaration '<unnamed enum> STBI__SCAN_type'
1593 | STBI__SCAN_type,
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1594:4: error: 'STBI__SCAN_header' conflicts with a previous declaration
1594 | STBI__SCAN_header
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1594:4: note: previous declaration '<unnamed enum> STBI__SCAN_header'
1594 | STBI__SCAN_header
| ^~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1597:13: error: redefinition of 'void stbi__refill_buffer(stbi__context*)'
1597 | static void stbi__refill_buffer(stbi__context *s)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1597:13: note: 'void stbi__refill_buffer(stbi__context*)' previously defined here
1597 | static void stbi__refill_buffer(stbi__context *s)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1614:28: error: redefinition of 'stbi_uc stbi__get8(stbi__context*)'
1614 | stbi_inline static stbi_uc stbi__get8(stbi__context *s)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1614:28: note: 'stbi_uc stbi__get8(stbi__context*)' previously defined here
1614 | stbi_inline static stbi_uc stbi__get8(stbi__context *s)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1628:24: error: redefinition of 'int stbi__at_eof(stbi__context*)'
1628 | stbi_inline static int stbi__at_eof(stbi__context *s)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1628:24: note: 'int stbi__at_eof(stbi__context*)' previously defined here
1628 | stbi_inline static int stbi__at_eof(stbi__context *s)
| ^~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1644:13: error: redefinition of 'void stbi__skip(stbi__context*, int)'
1644 | static void stbi__skip(stbi__context *s, int n)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1644:13: note: 'void stbi__skip(stbi__context*, int)' previously defined here
1644 | static void stbi__skip(stbi__context *s, int n)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1666:12: error: redefinition of 'int stbi__getn(stbi__context*, stbi_uc*, int)'
1666 | static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1666:12: note: 'int stbi__getn(stbi__context*, stbi_uc*, int)' previously defined here
1666 | static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n)
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1694:12: error: redefinition of 'int stbi__get16be(stbi__context*)'
1694 | static int stbi__get16be(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1694:12: note: 'int stbi__get16be(stbi__context*)' previously defined here
1694 | static int stbi__get16be(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1704:21: error: redefinition of 'stbi__uint32 stbi__get32be(stbi__context*)'
1704 | static stbi__uint32 stbi__get32be(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1704:21: note: 'stbi__uint32 stbi__get32be(stbi__context*)' previously defined here
1704 | static stbi__uint32 stbi__get32be(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1714:12: error: redefinition of 'int stbi__get16le(stbi__context*)'
1714 | static int stbi__get16le(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1714:12: note: 'int stbi__get16le(stbi__context*)' previously defined here
1714 | static int stbi__get16le(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1722:21: error: redefinition of 'stbi__uint32 stbi__get32le(stbi__context*)'
1722 | static stbi__uint32 stbi__get32le(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1722:21: note: 'stbi__uint32 stbi__get32le(stbi__context*)' previously defined here
1722 | static stbi__uint32 stbi__get32le(stbi__context *s)
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1746:16: error: redefinition of 'stbi_uc stbi__compute_y(int, int, int)'
1746 | static stbi_uc stbi__compute_y(int r, int g, int b)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1746:16: note: 'stbi_uc stbi__compute_y(int, int, int)' previously defined here
1746 | static stbi_uc stbi__compute_y(int r, int g, int b)
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1755:23: error: redefinition of 'unsigned char* stbi__convert_format(unsigned char*, int, int, unsigned int, unsigned int)'
1755 | static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1755:23: note: 'unsigned char* stbi__convert_format(unsigned char*, int, int, unsigned int, unsigned int)' previously defined here
1755 | static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1803:21: error: redefinition of 'stbi__uint16 stbi__compute_y_16(int, int, int)'
1803 | static stbi__uint16 stbi__compute_y_16(int r, int g, int b)
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1803:21: note: 'stbi__uint16 stbi__compute_y_16(int, int, int)' previously defined here
1803 | static stbi__uint16 stbi__compute_y_16(int r, int g, int b)
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1812:22: error: redefinition of 'stbi__uint16* stbi__convert_format16(stbi__uint16*, int, int, unsigned int, unsigned int)'
1812 | static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1812:22: note: 'stbi__uint16* stbi__convert_format16(stbi__uint16*, int, int, unsigned int, unsigned int)' previously defined here
1812 | static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1858:17: error: redefinition of 'float* stbi__ldr_to_hdr(stbi_uc*, int, int, int)'
1858 | static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1858:17: note: 'float* stbi__ldr_to_hdr(stbi_uc*, int, int, int)' previously defined here
1858 | static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1884:17: error: redefinition of 'stbi_uc* stbi__hdr_to_ldr(float*, int, int, int)'
1884 | static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1884:17: note: 'stbi_uc* stbi__hdr_to_ldr(float*, int, int, int)' previously defined here
1884 | static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1947:3: error: conflicting declaration 'typedef struct stbi__huffman stbi__huffman'
1947 | } stbi__huffman;
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:1947:3: note: previous declaration as 'typedef struct stbi__huffman stbi__huffman'
1947 | } stbi__huffman;
| ^~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2001:3: error: conflicting declaration 'typedef struct stbi__jpeg stbi__jpeg'
2001 | } stbi__jpeg;
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2001:3: note: previous declaration as 'typedef struct stbi__jpeg stbi__jpeg'
2001 | } stbi__jpeg;
| ^~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2003:12: error: redefinition of 'int stbi__build_huffman(stbi__huffman*, int*)'
2003 | static int stbi__build_huffman(stbi__huffman *h, int *count)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2003:12: note: 'int stbi__build_huffman(stbi__huffman*, int*)' previously defined here
2003 | static int stbi__build_huffman(stbi__huffman *h, int *count)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2050:13: error: redefinition of 'void stbi__build_fast_ac(stbi__int16*, stbi__huffman*)'
2050 | static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2050:13: note: 'void stbi__build_fast_ac(stbi__int16*, stbi__huffman*)' previously defined here
2050 | static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2075:13: error: redefinition of 'void stbi__grow_buffer_unsafe(stbi__jpeg*)'
2075 | static void stbi__grow_buffer_unsafe(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2075:13: note: 'void stbi__grow_buffer_unsafe(stbi__jpeg*)' previously defined here
2075 | static void stbi__grow_buffer_unsafe(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2094:27: error: redefinition of 'const stbi__uint32 stbi__bmask [17]'
2094 | static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535};
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2094:27: note: 'const stbi__uint32 stbi__bmask [17]' previously defined here
2094 | static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535};
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2097:24: error: redefinition of 'int stbi__jpeg_huff_decode(stbi__jpeg*, stbi__huffman*)'
2097 | stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2097:24: note: 'int stbi__jpeg_huff_decode(stbi__jpeg*, stbi__huffman*)' previously defined here
2097 | stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h)
| ^~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2149:18: error: redefinition of 'const int stbi__jbias [16]'
2149 | static const int stbi__jbias[16] = {0,-1,-3,-7,-15,-31,-63,-127,-255,-511,-1023,-2047,-4095,-8191,-16383,-32767};
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2149:18: note: 'const int stbi__jbias [16]' previously defined here
2149 | static const int stbi__jbias[16] = {0,-1,-3,-7,-15,-31,-63,-127,-255,-511,-1023,-2047,-4095,-8191,-16383,-32767};
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2153:24: error: redefinition of 'int stbi__extend_receive(stbi__jpeg*, int)'
2153 | stbi_inline static int stbi__extend_receive(stbi__jpeg *j, int n)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2153:24: note: 'int stbi__extend_receive(stbi__jpeg*, int)' previously defined here
2153 | stbi_inline static int stbi__extend_receive(stbi__jpeg *j, int n)
| ^~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2169:24: error: redefinition of 'int stbi__jpeg_get_bits(stbi__jpeg*, int)'
2169 | stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2169:24: note: 'int stbi__jpeg_get_bits(stbi__jpeg*, int)' previously defined here
2169 | stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n)
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2181:24: error: redefinition of 'int stbi__jpeg_get_bit(stbi__jpeg*)'
2181 | stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2181:24: note: 'int stbi__jpeg_get_bit(stbi__jpeg*)' previously defined here
2181 | stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2194:22: error: redefinition of 'const stbi_uc stbi__jpeg_dezigzag [79]'
2194 | static const stbi_uc stbi__jpeg_dezigzag[64+15] =
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2194:22: note: 'const stbi_uc stbi__jpeg_dezigzag [79]' previously defined here
2194 | static const stbi_uc stbi__jpeg_dezigzag[64+15] =
| ^~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2210:12: error: redefinition of 'int stbi__jpeg_decode_block(stbi__jpeg*, short int*, stbi__huffman*, stbi__huffman*, stbi__int16*, int, stbi__uint16*)'
2210 | static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant)
| ^~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2210:12: note: 'int stbi__jpeg_decode_block(stbi__jpeg*, short int*, stbi__huffman*, stbi__huffman*, stbi__int16*, int, stbi__uint16*)' previously defined here
2210 | static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant)
| ^~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2265:12: error: redefinition of 'int stbi__jpeg_decode_block_prog_dc(stbi__jpeg*, short int*, stbi__huffman*, int)'
2265 | static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2265:12: note: 'int stbi__jpeg_decode_block_prog_dc(stbi__jpeg*, short int*, stbi__huffman*, int)' previously defined here
2265 | static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2295:12: error: redefinition of 'int stbi__jpeg_decode_block_prog_ac(stbi__jpeg*, short int*, stbi__huffman*, stbi__int16*)'
2295 | static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2295:12: note: 'int stbi__jpeg_decode_block_prog_ac(stbi__jpeg*, short int*, stbi__huffman*, stbi__int16*)' previously defined here
2295 | static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2416:28: error: redefinition of 'stbi_uc stbi__clamp(int)'
2416 | stbi_inline static stbi_uc stbi__clamp(int x)
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2416:28: note: 'stbi_uc stbi__clamp(int)' previously defined here
2416 | stbi_inline static stbi_uc stbi__clamp(int x)
| ^~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2467:13: error: redefinition of 'void stbi__idct_block(stbi_uc*, int, short int*)'
2467 | static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64])
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2467:13: note: 'void stbi__idct_block(stbi_uc*, int, short int*)' previously defined here
2467 | static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64])
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2530:13: error: redefinition of 'void stbi__idct_simd(stbi_uc*, int, short int*)'
2530 | static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64])
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2530:13: note: 'void stbi__idct_simd(stbi_uc*, int, short int*)' previously defined here
2530 | static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64])
| ^~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2919:16: error: redefinition of 'stbi_uc stbi__get_marker(stbi__jpeg*)'
2919 | static stbi_uc stbi__get_marker(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2919:16: note: 'stbi_uc stbi__get_marker(stbi__jpeg*)' previously defined here
2919 | static stbi_uc stbi__get_marker(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2936:13: error: redefinition of 'void stbi__jpeg_reset(stbi__jpeg*)'
2936 | static void stbi__jpeg_reset(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2936:13: note: 'void stbi__jpeg_reset(stbi__jpeg*)' previously defined here
2936 | static void stbi__jpeg_reset(stbi__jpeg *j)
| ^~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2949:12: error: redefinition of 'int stbi__parse_entropy_coded_data(stbi__jpeg*)'
2949 | static int stbi__parse_entropy_coded_data(stbi__jpeg *z)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:2949:12: note: 'int stbi__parse_entropy_coded_data(stbi__jpeg*)' previously defined here
2949 | static int stbi__parse_entropy_coded_data(stbi__jpeg *z)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
D:/OpenGL/external/stb/include/stb_image.h:3073:13: error: redefinition of 'void stbi__jpeg_dequantize(short int*, stbi__uint16*)'
3073 | static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant)
| ^~~~~~~~~~~~~~~~~~~~~