[Bf-blender-cvs] [06034b147aa] master: Cycles: Cleanup, spelling and braces

Sergey Sharybin noreply at git.blender.org
Fri Apr 28 14:10:32 CEST 2017


Commit: 06034b147aab1c80ad959d88a69b493cd5891e9c
Author: Sergey Sharybin
Date:   Fri Apr 28 14:10:21 2017 +0200
Branches: master
https://developer.blender.org/rB06034b147aab1c80ad959d88a69b493cd5891e9c

Cycles: Cleanup, spelling and braces

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

M	intern/cycles/kernel/kernel_image_opencl.h
M	intern/cycles/render/image.cpp

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

diff --git a/intern/cycles/kernel/kernel_image_opencl.h b/intern/cycles/kernel/kernel_image_opencl.h
index c1ac39e7f1e..a5c5a73ddb0 100644
--- a/intern/cycles/kernel/kernel_image_opencl.h
+++ b/intern/cycles/kernel/kernel_image_opencl.h
@@ -75,12 +75,15 @@ ccl_device float4 kernel_tex_image_interp(KernelGlobals *kg, int id, float x, fl
 	/* Image Options */
 	uint interpolation = (info.w & (1 << 0)) ? INTERPOLATION_CLOSEST : INTERPOLATION_LINEAR;
 	uint extension;
-	if(info.w & (1 << 1))
+	if(info.w & (1 << 1)) {
 		extension = EXTENSION_REPEAT;
-	else if(info.w & (1 << 2))
+	}
+	else if(info.w & (1 << 2)) {
 		extension = EXTENSION_EXTEND;
-	else
+	}
+	else {
 		extension = EXTENSION_CLIP;
+	}
 
 	float4 r;
 	int ix, iy, nix, niy;
@@ -151,12 +154,15 @@ ccl_device float4 kernel_tex_image_interp_3d(KernelGlobals *kg, int id, float x,
 	/* Image Options */
 	uint interpolation = (info.w & (1 << 0)) ? INTERPOLATION_CLOSEST : INTERPOLATION_LINEAR;
 	uint extension;
-	if(info.w & (1 << 1))
+	if(info.w & (1 << 1)) {
 		extension = EXTENSION_REPEAT;
-	else if(info.w & (1 << 2))
+	}
+	else if(info.w & (1 << 2)) {
 		extension = EXTENSION_EXTEND;
-	else
+	}
+	else {
 		extension = EXTENSION_CLIP;
+	}
 
 	float4 r;
 	int ix, iy, iz, nix, niy, niz;
@@ -174,7 +180,7 @@ ccl_device float4 kernel_tex_image_interp_3d(KernelGlobals *kg, int id, float x,
 			if(extension == EXTENSION_CLIP) {
 				if(x < 0.0f || y < 0.0f || z < 0.0f ||
 				   x > 1.0f || y > 1.0f || z > 1.0f)
-				 {
+				{
 					return make_float4(0.0f, 0.0f, 0.0f, 0.0f);
 				}
 			}
@@ -201,12 +207,13 @@ ccl_device float4 kernel_tex_image_interp_3d(KernelGlobals *kg, int id, float x,
 			niz = svm_image_texture_wrap_periodic(iz+1, depth);
 		}
 		else {
-			if(extension == EXTENSION_CLIP)
+			if(extension == EXTENSION_CLIP) {
 				if(x < 0.0f || y < 0.0f || z < 0.0f ||
 				   x > 1.0f || y > 1.0f || z > 1.0f)
 				{
 					return make_float4(0.0f, 0.0f, 0.0f, 0.0f);
 				}
+			}
 			/* Fall through. */
 			/*  EXTENSION_EXTEND */
 			nix = svm_image_texture_wrap_clamp(ix+1, width);
diff --git a/intern/cycles/render/image.cpp b/intern/cycles/render/image.cpp
index e0bb8a16949..60d1f5f44f9 100644
--- a/intern/cycles/render/image.cpp
+++ b/intern/cycles/render/image.cpp
@@ -201,7 +201,7 @@ ImageDataType ImageManager::get_image_metadata(const string& filename,
  * to device ones and vice versa.
  *
  * There are special cases for CUDA Fermi, since there we have only 90 image texture
- * slots available and shold keep the flattended numbers in the 0-89 range.
+ * slots available and should keep the flattended numbers in the 0-89 range.
  */
 int ImageManager::type_index_to_flattened_slot(int slot, ImageDataType type)
 {




More information about the Bf-blender-cvs mailing list