Revision db2168d by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 12, 2021, 01:54 (GMT) |
USD Import: remove usd_util files. Moved the two create_reader() implementations from usd_util.(h|cc) to static functions in UsdStageReader and removed the usd_util files from the project. |
Revision 1d21e78 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 12, 2021, 00:28 (GMT) |
USD Import: stage reader validation and cleanup. Added USDStageReader validation and guard against null stage in the USDStageReader destructor. |
Revision 3fdfa07 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 11, 2021, 20:14 (GMT) |
USD Import: remove UsdPrimReader stage member. The UsdPrimReader class doesn't need a stage pointer as a member because the stage can implicitly be accessed through the prim itself, as long as the prim is valid. I removed the UsdPrimReader::stage_ member and updated the relevant constructors and function calls. Also, updated the various readers to construct schemas directly from the contained prim, e.g., pxr::UsdLuxRectLight rect_light(prim_) |
Revision 54b5ecc by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 11, 2021, 06:22 (GMT) |
USD Import: UsdPrimReader interface cleanup. Removed empty add_cache_modifier() function and made create_object() abstract. |
Revision 3dcc549 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 11, 2021, 05:19 (GMT) |
USD Import: naming convention fix. To be consistent with the convention used in the USD exporter, updated class member variables to consistently use snake case and trailing underscores instead of the m_ prefix. |
Revision 0759e45 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 11, 2021, 02:54 (GMT) |
USD Import: snake case for function names. As part of code cleanup, now using snake case consistently for class member function names, to match the convention used in the USD exporter code. |
March 11, 2021, 02:15 (GMT) |
USD Import: added blender::io::usd namespace. Added blender::io::usd namespace where it was missing, to conform to the convention used in the USD exporter code. |
March 11, 2021, 01:15 (GMT) |
USD Import: removed unneeded include guards. |
Revision 2d6769f by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 11, 2021, 00:46 (GMT) |
USD Import: use pragma once in headers. Replaced include guards with pragma once directives, to conform to the conventions used in the existing USD export code. |
Revision 7cfd8f7 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 11, 2021, 00:09 (GMT) |
USD Import: removed commented out code. |
Revision 97adb3e by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 10, 2021, 23:41 (GMT) |
USD Import: removed WM_reportf() trace calls. |
Revision c962263 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 10, 2021, 01:55 (GMT) |
USD Import: import display colors. Added support for reading the display color primvars. This option is off by default in the mesh read flags. |
Revision d2eccca by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 23:06 (GMT) |
USD Import: read attributes null data guard. Checking for null pointer to avoid crash when custom data allocation fails. |
Revision c700505 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 22:30 (GMT) |
USD Import: removed printf call. |
Revision c77832d by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 17:59 (GMT) |
USD Import: crash on reading no polys. Fixed a crash where polys were not being read for new meshes when the MOD_MESHSEQ_READ_POLY flag isn't set. Crash occurs because downstream code expects polys to exist. Modified the logic to always read verts and polys for new meshes, regardless of the value of the read flag. |
Revision 6da1424 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 02:58 (GMT) |
USD Import: subdiv option default to off. The Import Subdiv Option can sometimes behave unexpectedly, losing all sharp edges. Turning this option off by default until the behavior can be fine tuned. |
Revision 0746445 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 02:33 (GMT) |
USD Import: fixed compiler warnings. |
Revision c86a4b8 by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 01:53 (GMT) |
USD Import: Light Intensity Scale option. Added new float import option to scale intensity of imported lights. |
Revision 9bed12b by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 9, 2021, 01:19 (GMT) |
USD Import: fixed compiler warning. |
Revision 7c1ebab by Michael Kowalski (temp-usd-importer-T81257-merge, usd, usd-importer-T81257-merge) March 8, 2021, 21:46 (GMT) |
USD Import: simplify xform matrix computation. Updated the USDXformReader matrix computation function to use the standard UsdGeomXformable API for querying the prim's local transform and to determine whether the matrix is time-varying, rather than explicitly iterating over the UsdGeomXformOps. |
|