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
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-03-12 13:00:06 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-03-12 13:01:20 +0300
commitb20f12d835fab4854ef3c06023bb807b0e3f0d91 (patch)
tree745ef37f27c6b93f6bc9e3243a70123f9cc21dbd /intern/cycles/device/device_cuda.cpp
parentd652833a1767500653fcfea5e83ad4e31a0a1c14 (diff)
Cycles: Some typo fixes
Diffstat (limited to 'intern/cycles/device/device_cuda.cpp')
-rw-r--r--intern/cycles/device/device_cuda.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index 80c8cb1e592..22365bbdbc3 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -1188,12 +1188,12 @@ bool device_cuda_init(void)
if(cuew_result == CUEW_SUCCESS) {
VLOG(1) << "CUEW initialization succeeded";
if(CUDADevice::have_precompiled_kernels()) {
- VLOG(1) << "Found precompiled kernels";
+ VLOG(1) << "Found precompiled kernels";
result = true;
}
#ifndef _WIN32
else if(cuewCompilerPath() != NULL) {
- VLOG(1) << "Found CUDA compiled " << cuewCompilerPath();
+ VLOG(1) << "Found CUDA compiler " << cuewCompilerPath();
result = true;
}
else {