[Bf-blender-cvs] [3804a36] master: Cleanup: Typo fixes in OpenCL log messages.

Thomas Dinges noreply at git.blender.org
Thu Sep 24 15:35:08 CEST 2015


Commit: 3804a3660e31163c84a0a10d4f9fa2c596f11bd2
Author: Thomas Dinges
Date:   Thu Sep 24 15:34:41 2015 +0200
Branches: master
https://developer.blender.org/rB3804a3660e31163c84a0a10d4f9fa2c596f11bd2

Cleanup: Typo fixes in OpenCL log messages.

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

M	intern/cycles/device/device_opencl.cpp

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

diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp
index c3392d2..a7157e2 100644
--- a/intern/cycles/device/device_opencl.cpp
+++ b/intern/cycles/device/device_opencl.cpp
@@ -313,7 +313,7 @@ void opencl_get_usable_devices(vector<OpenCLPlatformDevice> *usable_devices)
 				continue;
 			}
 			if(!opencl_device_version_check(device_id)) {
-				FIRST_VLOG(2) << "Ignoting device " << device_name
+				FIRST_VLOG(2) << "Ignoring device " << device_name
 				              << " due to old compiler version.";
 				continue;
 			}
@@ -327,8 +327,8 @@ void opencl_get_usable_devices(vector<OpenCLPlatformDevice> *usable_devices)
 				                   &device_type,
 				                   NULL) != CL_SUCCESS)
 				{
-					FIRST_VLOG(2) << "Ignoting device " << device_name
-					              << ", faield to fetch device type.";
+					FIRST_VLOG(2) << "Ignoring device " << device_name
+					              << ", failed to fetch device type.";
 					continue;
 				}
 				FIRST_VLOG(2) << "Adding new device " << device_name << ".";
@@ -339,7 +339,7 @@ void opencl_get_usable_devices(vector<OpenCLPlatformDevice> *usable_devices)
 				                                               device_name));
 			}
 			else {
-				FIRST_VLOG(2) << "Ignoting device " << device_name
+				FIRST_VLOG(2) << "Ignoring device " << device_name
 				              << ", not officially supported yet.";
 			}
 		}




More information about the Bf-blender-cvs mailing list