Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-09-25whitespace cleanupCampbell Barton
2011-09-20changes for materials to treat them as shorts not int/chars (since they are ↵Campbell Barton
stored as shorts intermally) - converting nurbs to mesh was casting the material to unsigned char. - subsurf was casting to char, then int -> short in a loop. - have material functions take & return shorts.
2011-09-05Left debug print accidently enabled.Nathan Letwory
2011-09-04[#27884] Collada import: materials mismatch when 2 instance_geometry ↵Nathan Letwory
reference the same material Reported by David Roy Multi-materials used on different meshes would get ignored (resulting in white faces in textured view).
2011-09-04Fix [#28322] COLLADA imports messed up UVsNathan Letwory
Reported by Chad Gleason Imported index order could put mface->v4==0. We already know amount of verts, so use that instead.
2011-09-04Some whitespace changesNathan Letwory
2011-07-07[#27854] Collada import doesn't handle UVW mappingNathan Letwory
Reported by David Roy Patch by Brecht van Lommel UV import code wasn't taking possible stride into account (always assuming stride==2), thus reading UV coords totally wrong.
2011-06-20Fix [#26912] [Collada] Screw up with names/ids on importNathan Letwory
Reported by Valeriy Firsov Use the node name if it exists, fall back to id otherwise.
2011-06-20Fix [#27474] Blender crashes on collada import if input_set is missingNathan Letwory
reported by Rebin Cornelius. This needs patch from upstream report http://code.google.com/p/opencollada/issues/list?thanks=164 applied to OpenCOLLADA. lib/windows/collada and lib/win64/collada have already been updated. Ensures we don't read past array boundaries.
2011-03-09Fix [#26037] Import Collada crashes BlenderNathan Letwory
Submitted by David Roy Multiple nodes can reference the same geometry, and specify the same materials. This lead to the import code overwriting material mappings of faces in a destructive way. Instead of just writing the material bindings always we now keep book of what geometry+material mapping we've already handled.
2011-03-08Skip materials that are invalid.Nathan Letwory
2011-03-08Apply [#26383] Triangle fans support for COLLADA importerNathan Letwory
Submitted by Alexey Zakharov This patch adds support to Blender for reading geometry data that's represented as triangle fans.
2011-02-27doxygen: blender/collada tagged.Nathan Letwory
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-12fix for building with opencollada 833 on linux.Campbell Barton
2011-01-27Commit to cope with API changes in OpenCOLLADA (latest for Windows right now ↵Nathan Letwory
r827).
2010-12-21Fix [#25319] COLLADA import segfaults on maya modelNathan Letwory
Reported by Michael Williamson Fixed by Jeroen Bakker Wrong UV index was being used.
2010-12-19Apply [#25297] Fix for [#23765]Nathan Letwory
Bug reported by alarionfirn Patch submitted by Jeroen Bakker It took the read the N+N of the uv-layer, it should be the Nth uv layer.
2010-10-10Fix compiling for MingW too.Nathan Letwory
2010-10-10COLLADANathan Letwory
Import unit_settings to scene. Note: I use here RNA to do this, and I think I might slowly work on replacing low-level DNA usage with RNA where possible.
2010-10-06Assorted GCC fixes for OpenCOLLADA supportNathan Letwory
2010-10-05TextureCoordinateBinding.getName() -> ↵Nathan Letwory
TextureCoordinateBinding.getSemantic(); as per my own patch on OpenCOLLADA issue tracker.
2010-10-05SVN maintenance.Guillermo S. Romero
2010-10-05Reorganisation of COLLADA import code. Classes have been split into their ↵Nathan Letwory
own files. No functional changes. Where necessary extern "C" {} blocks have been added.