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
2021-08-02USD importer: fixed typousd-importer-T81257-mergemakowalski
Fixed typo in copyright block comments.
2021-08-02USD importer: updated copyright notices.makowalski
Explicitly acknowledged adaptation from the Alembic importer implementation and copyright by Kevin Dietrich.
2021-07-29USD import: remove placeholder bezier curve codemakowalski
The placeholder code for the unimplemented functionality of importing bezier curves was causing a crash. It has been removed until support for beziers can be properly added.
2021-07-29Updated USDMeshReader commentsmakowalski
2021-07-29USD import: update copyright noticesmakowalski
2021-07-28USD import: convert sun angle to radiansmakowalski
Now converting USD distant light angle from degrees to radians.
2021-07-27USD import: validate light attributesmakowalski
Added checks to validate light attributes and values, to help avoid errors when reading light settings which might not have been authored.
2021-07-27USD import: bug detecting mesh topology changemakowalski
Fixed mesh reader logic detecting topology changes in mesh sequence animations, which avoids a crash in some cases.
2021-07-26USD import: gray out disabled options.makowalski
Now graying out, instead of hiding, disabled options.
2021-07-25USD import options Experimental header alignmentmakowalski
Fixed alignment of the Experimental column header to be consistent with the other options headers.
2021-07-24USD import: don't check for cache usdz extension.makowalski
Removed check for .usdz extension in logic to determine cachfile type.
2021-07-24USD Import: removed unused variable.makowalski
2021-07-24USD import: use pointers for out parameters.makowalski
Changed return parameter types from references to pointers, to improve code readability, per suggestion from Sybren.
2021-07-24USD import: get_opacity_threshold() function.makowalski
Moved the opacity threshold query logic out of the needs_blend() function to a new get_opacity_threshold() function, for readability.
2021-07-24USD import: fix comments.makowalski
Updated to C-style comments. Minor cleanup of comments text.
2021-07-23USD import: update copyright notice.makowalski
Added NVIDIA copyright notice.
2021-07-23USD import cleanup: reorder include.makowalski
2021-07-23USD Import: fix comments.makowalski
Now using C-style comments throughout. Also, putting unused code in #if 0 blocks. Removed unneeded comments and other miscellaneous fixes.
2021-07-22USD Import: only create UV data if needed.makowalski
Fixed bug where UV custom data was being created even if reading mesh UVs is disabled.
2021-07-22USD Import: read uvs and colors options.makowalski
Replaced the mesh_read_flag enum property with read_mesh_uvs and read_mesh_colors toggles, as the enum property has turned out to be confusing to users.
2021-07-22USD Import: rename global_read_flag parameter.makowalski
Renamed the global_read_flag import option and parameter to mesh_read_flag.
2021-07-22USD import options UI improvements.makowalski
Now using streamlined options properties layout, implemented by Hans Goudey. Also, added name and a more concise description to the prim_path_mask property.
2021-07-22USD import: format fix.makowalski
2021-07-21USD import: Clang-Tidy warning fixes.makowalski
2021-07-20USD import: clarify mesh read options.makowalski
Simplified the mesh read options naming and descriptions to remove references to the mesh sequence modifiers, as such references may be confusing. The enum labels should now make it more obvious which options are for animated data, so mentioning the modifiers is unnecessary.
2021-07-20More descriptive USD mesh import option names.makowalski
Updated the rna_enum_usd_import_read_flags property enums with more descriptive names.
2021-07-20USD import option name cleanup.makowalski
Removed unneeded Import prefix from option names.
2021-07-20USD Import: mesh reader cleanup.makowalski
Simplified handling of left and right handed orientations when converting polygons.
2021-07-19USD importer format fixes.makowalski
2021-07-19USD importer: includes cleanup.makowalski
Removed unused includes and reordered includes.
2021-07-19USD import: remove unused includes.makowalski
2021-07-19USDNurbsReader: update comment.makowalski
Updated comment and replaced commented out code with #if 0 block.
2021-07-19USDNurbsReader minor cleanup.makowalski
Removed unneeded num_subcurves variable. Added braces to if statement.
2021-07-19USD importer: fix comments style.makowalski
2021-07-19USD import: remove obsolete comments.makowalski
2021-07-19USD import: remove extern C directive.makowalski
Removed unneeded extern C directive around includes, per suggestion from Hans Goudey in his review of the USD importer patch.
2021-07-19USD import options descriptions.makowalski
Miscellaneous updates to USD import option descriptions and names.
2021-07-19USD import Mesh Read Data option description.makowalski
Updated the Global Mesh Read Data Flag option description to be more complete.
2021-07-19USD importer: format fix.makowalski
2021-07-19USD import Prim Path Mask description.makowalski
Updated the description with a more complete explanation of the Prim Path Mask feature.
2021-07-18USD import: comment unused parameter.makowalski
Added comment for unused Object parameter in get_usd_reader().
2021-07-18USD_read_mesh() const parameter.makowalski
Per Sybren in his review of the USD importer patch: read_flag isn't being modified, so it should be const.
2021-07-18USD import option description typo.makowalski
Fixed typo in Import USD Preview option description.
2021-07-18USDImportParams designated initialization.makowalski
Now using designated initializers when constructing the import params struct, to help future-proof the code if struct members are changed or reordered. (Per suggestion by Campbell in his review of the patch.)
2021-07-12Merge branch 'master' of https://gitlab-master.nvidia.com/omniverse/blender ↵makowalski
into usd-importer-T81257-merge
2021-07-12Fix T89040: dependency graph not handling time remapping correctlyBrecht Van Lommel
In this bug report it resulted in rendering animations stopping too early, but this affected more areas. After the previous cleanup commit, it becomes clear that frame and ctime values were mixed up.
2021-07-12Cleanup: improve naming and comments of scene frame/ctime functionsBrecht Van Lommel
Confusingly, BKE_scene_frame_get did not match the frame number as expected by BKE_scene_frame_set. Instead it return the value after time remapping, which is commonly named "ctime". * Rename BKE_scene_frame_get to BKE_scene_ctime_get * Add a new BKE_scene_frame_get that matches BKE_scene_frame_set * Use int/float depending if fractional frame is expected
2021-07-12Pulled latest from master branch.makowalski
2021-07-12Fix T89736: Cycles error with persistent data, displacement and motion blurBrecht Van Lommel
2021-07-12Fix T89396: Cycles missing passes with multiple view layers and persistent dataBrecht Van Lommel