[Bf-blender-cvs] [4067e6bc415] master: Cleanup: format

Chris Blackbourn noreply at git.blender.org
Tue Nov 29 05:33:23 CET 2022


Commit: 4067e6bc41507f81dcb398afdede8828eeb43624
Author: Chris Blackbourn
Date:   Tue Nov 29 17:32:28 2022 +1300
Branches: master
https://developer.blender.org/rB4067e6bc41507f81dcb398afdede8828eeb43624

Cleanup: format

===================================================================

M	source/blender/blenkernel/BKE_uv_islands.hh
M	source/blender/editors/sculpt_paint/sculpt_paint_image.cc

===================================================================

diff --git a/source/blender/blenkernel/BKE_uv_islands.hh b/source/blender/blenkernel/BKE_uv_islands.hh
index cf274e415b9..406ecf39b71 100644
--- a/source/blender/blenkernel/BKE_uv_islands.hh
+++ b/source/blender/blenkernel/BKE_uv_islands.hh
@@ -17,7 +17,6 @@
 
 #include "DNA_meshdata_types.h"
 
-
 namespace blender::bke::uv_islands {
 
 struct MeshEdge;
diff --git a/source/blender/editors/sculpt_paint/sculpt_paint_image.cc b/source/blender/editors/sculpt_paint/sculpt_paint_image.cc
index d9981cbb557..6244cf8e33d 100644
--- a/source/blender/editors/sculpt_paint/sculpt_paint_image.cc
+++ b/source/blender/editors/sculpt_paint/sculpt_paint_image.cc
@@ -362,12 +362,18 @@ static void do_paint_pixels(void *__restrict userdata,
           }
           bool pixels_painted = false;
           if (image_buffer->rect_float != nullptr) {
-            pixels_painted = kernel_float4.paint(
-                pbvh_data.geom_primitives, node_data.uv_primitives, pixel_row, image_buffer, &automask_data);
+            pixels_painted = kernel_float4.paint(pbvh_data.geom_primitives,
+                                                 node_data.uv_primitives,
+                                                 pixel_row,
+                                                 image_buffer,
+                                                 &automask_data);
           }
           else {
-            pixels_painted = kernel_byte4.paint(
-                pbvh_data.geom_primitives, node_data.uv_primitives, pixel_row, image_buffer, &automask_data);
+            pixels_painted = kernel_byte4.paint(pbvh_data.geom_primitives,
+                                                node_data.uv_primitives,
+                                                pixel_row,
+                                                image_buffer,
+                                                &automask_data);
           }
 
           if (pixels_painted) {



More information about the Bf-blender-cvs mailing list