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
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2022-03-30 01:12:02 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-03-30 01:12:02 +0300
commit572c52d2a304cd333e25fcc76afd559f119980f9 (patch)
treee82860d9529933193f318c657f56364b99242121 /source/blender/blenkernel
parent176b331c43c5378b0a346b7c96b0934c9c5bf19f (diff)
temp-sculpt-colors: comment formatting
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_attribute.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_attribute.h b/source/blender/blenkernel/BKE_attribute.h
index bf383c8a82b..52bbb07f0ff 100644
--- a/source/blender/blenkernel/BKE_attribute.h
+++ b/source/blender/blenkernel/BKE_attribute.h
@@ -43,15 +43,15 @@ typedef enum AttributeDomainMask {
ATTR_DOMAIN_MASK_ALL = (1 << 5) - 1
} AttributeDomainMask;
-/* All domains that support color attributes */
+/* All domains that support color attributes. */
#define ATTR_DOMAIN_MASK_COLOR \
((AttributeDomainMask)((ATTR_DOMAIN_MASK_POINT | ATTR_DOMAIN_MASK_CORNER)))
-/* Attributes */
+/* Attributes. */
bool BKE_id_attributes_supported(struct ID *id);
-/** Create a new attribute layer
+/** Create a new attribute layer.
*/
struct CustomDataLayer *BKE_id_attribute_new(
struct ID *id, const char *name, int type, AttributeDomain domain, struct ReportList *reports);