Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2015-05-17 19:32:31 +0300
committerThomas Dinges <blender@dingto.org>2015-05-17 19:32:31 +0300
commit14c2bc53c0b4e02ac64c91908ba92d156c52023e (patch)
tree797b9eed078f196915c6dac8d29c3f919ee31484 /intern
parent4139686817501a4c22149b3ef8f9b4807f5053d6 (diff)
Cleanup: Typos, typos everywhere. :D
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/device/device_opencl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp
index e329ee495c2..5c480d98711 100644
--- a/intern/cycles/device/device_opencl.cpp
+++ b/intern/cycles/device/device_opencl.cpp
@@ -3338,14 +3338,14 @@ Device *device_opencl_create(DeviceInfo& info, Stats &stats, bool background)
return new OpenCLDeviceSplitKernel(info, stats, background);
} else {
/* For any other device, take megakernel path. */
- VLOG(1) << "Using megekernel";
+ VLOG(1) << "Using mega kernel";
return new OpenCLDeviceMegaKernel(info, stats, background);
}
} else {
/* If we can't retrieve platform and device type information for some
* reason, we default to megakernel path.
*/
- VLOG(1) << "Failed to rertieve platform or device, using megakernel";
+ VLOG(1) << "Failed to retrieve platform or device, using mega kernel";
return new OpenCLDeviceMegaKernel(info, stats, background);
}
}