Cleanup: spelling

This commit is contained in:
Campbell Barton 2022-06-14 14:30:13 +10:00
parent b5a5c24396
commit 6c31bd80e3
2 changed files with 8 additions and 6 deletions

View File

@ -294,8 +294,8 @@ void BKE_lib_override_library_property_delete(struct IDOverrideLibrary *override
* *
* \param idpoin: Pointer to the override ID. * \param idpoin: Pointer to the override ID.
* \param library_prop: The library override property to find the matching RNA property for. * \param library_prop: The library override property to find the matching RNA property for.
* \param r_index: The RNA array flat index (i.e. flatened index in case of multi-dimensional array * \param r_index: The RNA array flat index (i.e. flattened index in case of multi-dimensional
* properties). See #RNA_path_resolve_full familly of functions for details. * array properties). See #RNA_path_resolve_full family of functions for details.
*/ */
bool BKE_lib_override_rna_property_find(struct PointerRNA *idpoin, bool BKE_lib_override_rna_property_find(struct PointerRNA *idpoin,
const struct IDOverrideLibraryProperty *library_prop, const struct IDOverrideLibraryProperty *library_prop,

View File

@ -14,7 +14,7 @@
* Edge flags and usage flags are used by with scene/object/gpencil modifier bits, and those values * Edge flags and usage flags are used by with scene/object/gpencil modifier bits, and those values
* needs to stay consistent throughout. */ * needs to stay consistent throughout. */
/* These flags are used for 1 time calculation, not stroke selection afterwards. */ /** These flags are used for 1 time calculation, not stroke selection afterwards. */
typedef enum eLineartMainFlags { typedef enum eLineartMainFlags {
LRT_INTERSECTION_AS_CONTOUR = (1 << 0), LRT_INTERSECTION_AS_CONTOUR = (1 << 0),
LRT_EVERYTHING_AS_CONTOUR = (1 << 1), LRT_EVERYTHING_AS_CONTOUR = (1 << 1),
@ -48,9 +48,11 @@ typedef enum eLineartEdgeFlag {
LRT_EDGE_FLAG_INTERSECTION = (1 << 4), LRT_EDGE_FLAG_INTERSECTION = (1 << 4),
LRT_EDGE_FLAG_LOOSE = (1 << 5), LRT_EDGE_FLAG_LOOSE = (1 << 5),
/* LRT_EDGE_FLAG_FOR_FUTURE = (1 << 7), */ /* LRT_EDGE_FLAG_FOR_FUTURE = (1 << 7), */
/* It's a legacy limit of 8 bits for feature lines that come from original mesh edges. It should /**
not be needed in current object loading scheme, but might still be relevant if we are to * It's a legacy limit of 8 bits for feature lines that come from original mesh edges. It should
impelment EditMesh loading, so don't exceed 8 bits just yet. */ * not be needed in current object loading scheme, but might still be relevant if we are to
* implement edit-mesh loading, so don't exceed 8 bits just yet.
*/
LRT_EDGE_FLAG_CHAIN_PICKED = (1 << 8), LRT_EDGE_FLAG_CHAIN_PICKED = (1 << 8),
LRT_EDGE_FLAG_CLIPPED = (1 << 9), LRT_EDGE_FLAG_CLIPPED = (1 << 9),
/** Limited to 16 bits for the entire thing. */ /** Limited to 16 bits for the entire thing. */