[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55977] trunk/blender: code cleanup: warnings and style.

Campbell Barton ideasman42 at gmail.com
Fri Apr 12 02:50:40 CEST 2013


Revision: 55977
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55977
Author:   campbellbarton
Date:     2013-04-12 00:50:40 +0000 (Fri, 12 Apr 2013)
Log Message:
-----------
code cleanup: warnings and style.

Modified Paths:
--------------
    trunk/blender/build_files/cmake/cmake_static_check_clang_array.py
    trunk/blender/source/blender/blenkernel/intern/library.c
    trunk/blender/source/blender/blenlib/BLI_math_vector.h
    trunk/blender/source/blender/blenlib/intern/storage.c
    trunk/blender/source/blender/editors/render/render_opengl.c
    trunk/blender/source/blender/freestyle/intern/stroke/StrokeRep.cpp
    trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp

Modified: trunk/blender/build_files/cmake/cmake_static_check_clang_array.py
===================================================================
--- trunk/blender/build_files/cmake/cmake_static_check_clang_array.py	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/build_files/cmake/cmake_static_check_clang_array.py	2013-04-12 00:50:40 UTC (rev 55977)
@@ -66,7 +66,7 @@
             percent_str = "[" + ("%.2f]" % percent).rjust(7) + " %:"
 
             sys.stdout.flush()
-            sys.stdout.write("%s " % percent_str)
+            sys.stdout.write("%s %s\n" % (percent_str, c))
 
         return subprocess.Popen(cmd)
 

Modified: trunk/blender/source/blender/blenkernel/intern/library.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/library.c	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/source/blender/blenkernel/intern/library.c	2013-04-12 00:50:40 UTC (rev 55977)
@@ -120,8 +120,6 @@
 #include "BPY_extern.h"
 #endif
 
-#define MAX_IDPUP  60  /* was 24 */
-
 /* GS reads the memory pointed at in a specific ordering. 
  * only use this definition, makes little and big endian systems
  * work fine, in conjunction with MAKE_ID */
@@ -1078,6 +1076,8 @@
 }
 
 #if 0 /* UNUSED */
+#define MAX_IDPUP  60  /* was 24 */
+
 static void get_flags_for_id(ID *id, char *buf) 
 {
 	int isfake = id->flag & LIB_FAKEUSER;

Modified: trunk/blender/source/blender/blenlib/BLI_math_vector.h
===================================================================
--- trunk/blender/source/blender/blenlib/BLI_math_vector.h	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/source/blender/blenlib/BLI_math_vector.h	2013-04-12 00:50:40 UTC (rev 55977)
@@ -169,7 +169,7 @@
 /******************************* Interpolation *******************************/
 
 void interp_v2_v2v2(float r[2], const float a[2], const float b[2], const float t);
-void interp_v2_v2v2v2(float r[2], const float a[2], const float b[2], const float c[3], const float t[3]);
+void interp_v2_v2v2v2(float r[2], const float a[2], const float b[2], const float c[2], const float t[3]);
 void interp_v3_v3v3(float r[3], const float a[3], const float b[3], const float t);
 void interp_v3_v3v3v3(float p[3], const float v1[3], const float v2[3], const float v3[3], const float w[3]);
 void interp_v3_v3v3v3v3(float p[3], const float v1[3], const float v2[3], const float v3[3], const float v4[3], const float w[4]);
@@ -193,7 +193,7 @@
 
 MINLINE int equals_v2v2(const float v1[2], const float v2[2]);
 MINLINE int equals_v3v3(const float a[3], const float b[3]);
-MINLINE int compare_v2v2(const float a[3], const float b[3], const float limit);
+MINLINE int compare_v2v2(const float a[2], const float b[2], const float limit);
 MINLINE int compare_v3v3(const float a[3], const float b[3], const float limit);
 MINLINE int compare_len_v3v3(const float a[3], const float b[3], const float limit);
 

Modified: trunk/blender/source/blender/blenlib/intern/storage.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/storage.c	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/source/blender/blenlib/intern/storage.c	2013-04-12 00:50:40 UTC (rev 55977)
@@ -520,7 +520,7 @@
 
 	/* change error mode so user does not get a "no disk in drive" popup
 	 * when looking for a file on an empty CD/DVD drive */
-	old_error_mode = SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOOPENFILEERRORBOX);
+	old_error_mode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
 
 #ifndef __MINGW32__
 	res = _wstat(tmp_16, &st);

Modified: trunk/blender/source/blender/editors/render/render_opengl.c
===================================================================
--- trunk/blender/source/blender/editors/render/render_opengl.c	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/source/blender/editors/render/render_opengl.c	2013-04-12 00:50:40 UTC (rev 55977)
@@ -245,12 +245,12 @@
 		char err_out[256] = "unknown";
 		ImBuf *ibuf_view = ED_view3d_draw_offscreen_imbuf_simple(scene, scene->camera, oglrender->sizex, oglrender->sizey,
 		                                                         IB_rect, OB_SOLID, FALSE, TRUE,
-																 (draw_sky)? R_ADDSKY: R_ALPHAPREMUL, err_out);
+		                                                         (draw_sky) ? R_ADDSKY: R_ALPHAPREMUL, err_out);
 		camera = scene->camera;
 
 		if (ibuf_view) {
 			/* steal rect reference from ibuf */
-			rect = (unsigned char*)ibuf_view->rect;
+			rect = (unsigned char *)ibuf_view->rect;
 			ibuf_view->mall &= ~IB_rect;
 
 			IMB_freeImBuf(ibuf_view);
@@ -272,8 +272,8 @@
 		/* sequencer has got trickier conversion happened above
 		 * also assume opengl's space matches byte buffer color space */
 		IMB_buffer_float_from_byte(rr->rectf, rect,
-									IB_PROFILE_LINEAR_RGB, IB_PROFILE_SRGB, TRUE,
-									oglrender->sizex, oglrender->sizey, oglrender->sizex, oglrender->sizex);
+		                           IB_PROFILE_LINEAR_RGB, IB_PROFILE_SRGB, true,
+		                           oglrender->sizex, oglrender->sizey, oglrender->sizex, oglrender->sizex);
 	}
 
 	/* rr->rectf is now filled with image data */
@@ -292,8 +292,8 @@
 			imb_addrectImBuf(ibuf);
 
 		IMB_partial_display_buffer_update(ibuf, rr->rectf, rect, rr->rectx, 0, 0,
-										  &scene->view_settings, &scene->display_settings,
-										  0, 0, rr->rectx, rr->recty, TRUE);
+		                                  &scene->view_settings, &scene->display_settings,
+		                                  0, 0, rr->rectx, rr->recty, true);
 
 		/* write file for animation */
 		if (oglrender->write_still) {

Modified: trunk/blender/source/blender/freestyle/intern/stroke/StrokeRep.cpp
===================================================================
--- trunk/blender/source/blender/freestyle/intern/stroke/StrokeRep.cpp	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/source/blender/freestyle/intern/stroke/StrokeRep.cpp	2013-04-12 00:50:40 UTC (rev 55977)
@@ -98,10 +98,12 @@
 	       (p[0] < -HUGE_COORD) || (p[1] < -HUGE_COORD);
 }
 
+#if 0
 static real crossP(const Vec2r& A, const Vec2r& B)
 {
 	return A[0] * B[1] - A[1] * B[0];
 }
+#endif
 
 void Strip::createStrip (const vector<StrokeVertex*>& iStrokeVertices)
 {

Modified: trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp
===================================================================
--- trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp	2013-04-11 18:10:57 UTC (rev 55976)
+++ trunk/blender/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp	2013-04-12 00:50:40 UTC (rev 55977)
@@ -1758,16 +1758,17 @@
 		                        6,5,1,2,
 		                        7,6,2,3,
 		                        5,4,0,1};
-		for (unsigned int i=0;i<(sizeof(d)/sizeof(d[0]));)
-		{
-			const btVector4 p[] = {x[d[i++]],
-			                       x[d[i++]],
-			                       x[d[i++]],
-			                       x[d[i++]]};
-			if (clipDraw<4,QueryOCL>(p,1.f,0.f)) 
-				return(true);
+		for (unsigned int i = 0; i < (sizeof(d) / sizeof(d[0]));) {
+			const btVector4 p[] = {x[d[i + 0]],
+			                       x[d[i + 1]],
+			                       x[d[i + 2]],
+			                       x[d[i + 3]]};
+			i += 4;
+			if (clipDraw<4, QueryOCL>(p, 1.0f, 0.0f)) {
+				return true;
+			}
 		}
-		return(false);
+		return false;
 	}
 };
 




More information about the Bf-blender-cvs mailing list