Commit Graph

451 Commits

Author SHA1 Message Date
Kim Kulling
80ae9afe4e Add missing documentation. 2022-08-30 21:55:52 +02:00
Kim Kulling
e34becff62 Enable portable linkage to fix build 2022-08-29 11:43:32 +02:00
Kim Kulling
0571ee21fb Introduce unittest for BaseProcess. 2022-08-28 20:58:52 +02:00
Kim Kulling
e4c383324a Use string for constexpr 2022-08-27 15:11:54 +02:00
Kim Kulling
14186bcd6b Code cleanup and some new unittests for edgecases. 2022-08-27 14:07:45 +02:00
Aaron Gokaslan
e93fa6699a Manually fix up 100 more instances where it should be defaulted 2022-08-25 12:20:13 -04:00
Aaron Gokaslan
6fa21dcc6e Explicitly default all empty dtors 2022-08-25 11:32:59 -04:00
Aaron Gokaslan
27edb43600 Apply modernize-use-emplace clang-tidy rule 2022-08-23 11:41:49 -04:00
Turo Lamminen
90d1464405 Remove set but unused variables 2022-08-17 11:42:32 +03:00
Robert Osfield
8e062792cd Build fix for compiling against minizip. 2022-07-08 12:46:27 +01:00
Kim Kulling
636d8bffe5 Merge branch 'master' into kimkulling/fix_memleak_in_xmlparser 2022-07-02 21:32:24 +02:00
Kim Kulling
9063216893 Fix a memory leak 2022-07-02 21:21:31 +02:00
Kim Kulling
5598356157 Merge branch 'master' into master 2022-06-24 09:56:09 +02:00
Gargaj
bca5650578 fix windows 32 bit builds 2022-06-21 13:40:49 +02:00
hgdagon
ce8081bd0a Merge branch 'master' into master 2022-06-13 00:15:31 +04:00
Kim Kulling
e7daa5759b Merge branch 'master' into master 2022-06-07 22:01:00 +02:00
Kim Kulling
39a4627519 Merge branch 'master' into kimkulling/create_skeleton_data_issue_4015 2022-06-02 21:47:29 +02:00
Kim Kulling
03532eaec3 Merge branch 'master' into msvcfix 2022-06-01 17:11:06 +02:00
Kim Kulling
b7a70ac707 Add compiler switgxh for using static linkage for std_image 2022-05-31 23:24:31 +02:00
Kim Kulling
05867f4752 Merge branch 'kimkulling/link_stb_image_statically_issue_4467' of https://github.com/assimp/assimp into kimkulling/link_stb_image_statically_issue_4467 2022-05-31 20:08:39 +02:00
Kim Kulling
de4fe01c94 Fix clang build 2022-05-31 20:08:26 +02:00
Kim Kulling
e28becbaf5 Update Assimp.cpp 2022-05-31 19:17:08 +02:00
Kim Kulling
4b25eb6c4b Update Assimp.cpp 2022-05-31 19:09:22 +02:00
Kim Kulling
c0e141a6a9 Update StbCommon.h 2022-05-31 19:08:46 +02:00
Kim Kulling
b00923ebcd Update Assimp.cpp 2022-05-31 19:08:29 +02:00
Kim Kulling
472e15c405 Merge branch 'master' into kimkulling/link_stb_image_statically_issue_4467 2022-05-31 17:47:43 +02:00
Kim Kulling
234e55fbb1 Use size_t 2022-05-31 07:29:54 +02:00
Gargaj
f612865f22 fix msvc warnings-as-errors 2022-05-29 01:35:48 +02:00
hgdagon
efbcdccac9 Fix GNUC check on Windows (2nd attempt) 2022-05-25 09:18:42 -07:00
hgdagon
affa85a36b Fix GNUC check on Windows 2022-05-25 07:59:01 -07:00
Kim Kulling
ed3e218550 Bugfix: fix not initialized member attributes 2022-05-21 19:08:43 +02:00
IOhannes m zmölnig
1d3d5c4bb6 Rename TextureTypeToString() to aiTextureTypeToString()
Closes: https://github.com/assimp/assimp/issues/4493
2022-05-01 13:27:42 +02:00
Kim Kulling
d5c798f325 Fix leak 2022-04-30 21:02:48 +02:00
Florian Born
7f0509ae87 Stack allocator is now inline 2022-04-21 11:33:04 +02:00
Florian Born
0355ae967f compile fix on other platforms 2022-04-20 17:57:03 +02:00
Florian Born
320775b939 Compile fix 2022-04-20 16:39:36 +02:00
Florian Born
d3646c3118 Proper destruction of individual objects 2022-04-20 16:11:09 +02:00
Florian Born
1d6ed840fb Replace single allocations in fbx loader by block allocation 2022-04-20 12:14:35 +02:00
Kim Kulling
7f913c180b Merge branch 'master' into master 2022-04-19 15:23:09 +02:00
hgdagon
518d50d2e6 Fixes for Windows/MSYS2 2022-04-07 03:07:57 -07:00
Kim Kulling
e5747dad9b First concepts 2022-04-05 20:07:22 +02:00
Kim Kulling
5c438963c0 Disable correct compiler-warning: unused-function. 2022-04-05 19:59:36 +02:00
Kim Kulling
97c7ab3c05 Move stb_image header into its own header file. 2022-04-05 19:53:41 +02:00
Kim Kulling
b8658cefe0 Link std_image statically. 2022-04-05 18:48:45 +02:00
Sergio Acereda
729ab8ae33 Trying to fix reorder error 2022-03-12 08:15:11 +01:00
Sergio Acereda
51e248909f Avoid setting metallic/roughness/sheen/clearcoat properties when they are not found on mtl file. 2022-03-11 22:29:59 +01:00
Kim Kulling
47f004517f Add missing cast. 2022-03-10 10:33:29 +01:00
Jonas Karlsson
c14eccefaf Fix 'i >= 0' always true bug
If 'disk_filename' does not contain a dot (.) then 'i' would overflow.
Making 'i' an int makes sure the for loop works as intended.
2022-03-09 23:05:47 +01:00
Kim Kulling
d4527d4e87 Merge branch 'master' into master 2022-03-05 14:00:32 +01:00
Kim Kulling
7c13b16d30 Add missing flush modes supported by zlib 2022-02-14 20:51:06 +01:00