[Bf-blender-cvs] [eeaf4523811] master: Cleanup: clang-format

Campbell Barton noreply at git.blender.org
Fri Dec 6 15:44:53 CET 2019


Commit: eeaf45238117a81b07552bfc6fa70a304bfc4f83
Author: Campbell Barton
Date:   Sat Dec 7 01:35:53 2019 +1100
Branches: master
https://developer.blender.org/rBeeaf45238117a81b07552bfc6fa70a304bfc4f83

Cleanup: clang-format

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

M	intern/ghost/intern/GHOST_SystemWin32.cpp
M	source/blender/blenkernel/intern/armature.c
M	source/blender/blenkernel/intern/cloth.c
M	source/blender/draw/intern/smaa_textures.h

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

diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp
index 79e38de414f..c0a4376fd4c 100644
--- a/intern/ghost/intern/GHOST_SystemWin32.cpp
+++ b/intern/ghost/intern/GHOST_SystemWin32.cpp
@@ -1157,7 +1157,7 @@ LRESULT WINAPI GHOST_SystemWin32::s_wndProc(HWND hwnd, UINT msg, WPARAM wParam,
 
   if (hwnd) {
 
-	  if (msg == WM_NCCREATE) {
+    if (msg == WM_NCCREATE) {
       // Tell Windows to automatically handle scaling of non-client areas
       // such as the caption bar. EnableNonClientDpiScaling was introduced in Windows 10
       HMODULE m_user32 = ::LoadLibrary("User32.dll");
diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c
index 4ecb4093692..c588ee80c78 100644
--- a/source/blender/blenkernel/intern/armature.c
+++ b/source/blender/blenkernel/intern/armature.c
@@ -1575,7 +1575,6 @@ static void armature_vert_task(void *__restrict userdata,
         }
 
         pchan_bone_deform(pchan, weight, vec, dq, smat, co, &contrib);
-
       }
     }
     /* if there are vertexgroups but not groups with bones
diff --git a/source/blender/blenkernel/intern/cloth.c b/source/blender/blenkernel/intern/cloth.c
index d26dca4a252..d80fae29cc8 100644
--- a/source/blender/blenkernel/intern/cloth.c
+++ b/source/blender/blenkernel/intern/cloth.c
@@ -901,9 +901,9 @@ static void cloth_from_mesh(ClothModifierData *clmd, Mesh *mesh)
   }
 }
 
-/***************************************************************************************
- * SPRING NETWORK GPU_BATCH_BUILDING IMPLEMENTATION BEGIN
- ***************************************************************************************/
+/* -------------------------------------------------------------------- */
+/** \name Spring Network Building Implementation
+ * \{ */
 
 BLI_INLINE void spring_verts_ordered_set(ClothSpring *spring, int v0, int v1)
 {
@@ -1744,8 +1744,6 @@ static int cloth_build_springs(ClothModifierData *clmd, Mesh *mesh)
 #endif
 
   return 1;
+}
 
-} /* cloth_build_springs */
-  /***************************************************************************************
-   * SPRING NETWORK GPU_BATCH_BUILDING IMPLEMENTATION END
-   ***************************************************************************************/
+/** \} */
diff --git a/source/blender/draw/intern/smaa_textures.h b/source/blender/draw/intern/smaa_textures.h
index 0e1d1cb3489..74b8260fbe6 100644
--- a/source/blender/draw/intern/smaa_textures.h
+++ b/source/blender/draw/intern/smaa_textures.h
@@ -34,6 +34,9 @@
 #define AREATEX_PITCH (AREATEX_WIDTH * 2)
 #define AREATEX_SIZE (AREATEX_HEIGHT * AREATEX_PITCH)
 
+/* Don't re-wrap large data definitions. */
+/* clang-format off */
+
 /**
  * Stored in R8G8 format. Load it in the following format:
  *  - DX10: DXGI_FORMAT_R8G8_UNORM
@@ -14975,11 +14978,16 @@ static const unsigned char areaTexBytes[] = {
     0x00, 0x00, 0x00, 0x00
 };
 
+/* clang-format on */
+
 #define SEARCHTEX_WIDTH 64
 #define SEARCHTEX_HEIGHT 16
 #define SEARCHTEX_PITCH SEARCHTEX_WIDTH
 #define SEARCHTEX_SIZE (SEARCHTEX_HEIGHT * SEARCHTEX_PITCH)
 
+/* Don't re-wrap large data definitions. */
+/* clang-format off */
+
 /**
  * Stored in R8 format. Load it in the following format:
  *  - DX10: DXGI_FORMAT_R8_UNORM
@@ -15073,4 +15081,6 @@ static const unsigned char searchTexBytes[] = {
     0x00, 0x00, 0x00, 0x00,
 };
 
-#endif /* __SMAA_TEXTURES_H__ */
\ No newline at end of file
+/* clang-format off */
+
+#endif /* __SMAA_TEXTURES_H__ */



More information about the Bf-blender-cvs mailing list