From eae36be372a6b16ee3e76eff0485a47da4f3c230 Mon Sep 17 00:00:00 2001 From: Joseph Eagar Date: Tue, 5 Apr 2022 11:42:55 -0700 Subject: Refactor: Unify vertex and sculpt colors into new color attribute system. This commit removes sculpt colors from experimental status and unifies it with vertex colors. It introduces the concept of "color attributes", which are any attributes that represents colors. Color attributes can be represented with byte or floating-point numbers and can be stored in either vertices or face corners. Color attributes share a common namespace (so you can no longer have a floating-point sculpt color attribute and a byte vertex color attribute with the same name). Note: this commit does not include vertex paint mode, which is a separate patch, see: https://developer.blender.org/D14179 Differential Revision: https://developer.blender.org/D12587 Ref D12587 --- release/datafiles/icons/brush.sculpt.paint.dat | Bin 0 -> 1574 bytes release/datafiles/icons/brush.sculpt.smear.dat | Bin 0 -> 1700 bytes release/datafiles/icons/ops.sculpt.color_filter.dat | Bin 0 -> 1700 bytes release/datafiles/icons/ops.sculpt.mask_by_color.dat | Bin 0 -> 3716 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 release/datafiles/icons/brush.sculpt.paint.dat create mode 100644 release/datafiles/icons/brush.sculpt.smear.dat create mode 100644 release/datafiles/icons/ops.sculpt.color_filter.dat create mode 100644 release/datafiles/icons/ops.sculpt.mask_by_color.dat (limited to 'release/datafiles') diff --git a/release/datafiles/icons/brush.sculpt.paint.dat b/release/datafiles/icons/brush.sculpt.paint.dat new file mode 100644 index 00000000000..1cee34c0dee Binary files /dev/null and b/release/datafiles/icons/brush.sculpt.paint.dat differ diff --git a/release/datafiles/icons/brush.sculpt.smear.dat b/release/datafiles/icons/brush.sculpt.smear.dat new file mode 100644 index 00000000000..3efba0b4cb1 Binary files /dev/null and b/release/datafiles/icons/brush.sculpt.smear.dat differ diff --git a/release/datafiles/icons/ops.sculpt.color_filter.dat b/release/datafiles/icons/ops.sculpt.color_filter.dat new file mode 100644 index 00000000000..d589b15a124 Binary files /dev/null and b/release/datafiles/icons/ops.sculpt.color_filter.dat differ diff --git a/release/datafiles/icons/ops.sculpt.mask_by_color.dat b/release/datafiles/icons/ops.sculpt.mask_by_color.dat new file mode 100644 index 00000000000..637c47d2d84 Binary files /dev/null and b/release/datafiles/icons/ops.sculpt.mask_by_color.dat differ -- cgit v1.2.3