From b20f12d835fab4854ef3c06023bb807b0e3f0d91 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sat, 12 Mar 2016 15:00:06 +0500 Subject: [PATCH] Cycles: Some typo fixes --- intern/cycles/blender/blender_sync.h | 2 +- intern/cycles/device/device_cuda.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/intern/cycles/blender/blender_sync.h b/intern/cycles/blender/blender_sync.h index 92250ffeefc..a007099b178 100644 --- a/intern/cycles/blender/blender_sync.h +++ b/intern/cycles/blender/blender_sync.h @@ -70,7 +70,7 @@ public: void sync_camera(BL::RenderSettings& b_render, BL::Object& b_override, int width, int height, - const char *viewname); + const char *viewname); void sync_view(BL::SpaceView3D& b_v3d, BL::RegionView3D& b_rv3d, int width, int height); 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 {