Commit: 5f5cf21a833fb636627121ffd94a57ebf514fac6 Author: Hans Goudey Date: Fri Jul 2 13:27:56 2021 -0500 Branches: master https://developer.blender.org/rB5f5cf21a833fb636627121ffd94a57ebf514fac6
Cleanup: Remove unused transform matrix from objects This was the only reference to this matrix. https://developer.blender.org/D11770 =================================================================== M source/blender/makesdna/DNA_object_types.h =================================================================== diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h index 8d861647bd2..26a1bea4b3a 100644 --- a/source/blender/makesdna/DNA_object_types.h +++ b/source/blender/makesdna/DNA_object_types.h @@ -335,12 +335,6 @@ typedef struct Object { */ float imat[4][4]; - /* Previously 'imat' was used at render time, but as other places use it too - * the interactive ui of 2.5 creates problems. So now only 'imat_ren' should - * be used when ever the inverse of ob->obmat * re->viewmat is needed! - jahka - */ - float imat_ren[4][4]; - /** Copy of Base's layer in the scene. */ unsigned int lay DNA_DEPRECATED; _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
