Cycles: Some typo fixes

This commit is contained in:
Sergey Sharybin
2016-03-12 15:00:06 +05:00
parent d652833a17
commit b20f12d835
2 changed files with 3 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ public:
void sync_camera(BL::RenderSettings& b_render, void sync_camera(BL::RenderSettings& b_render,
BL::Object& b_override, BL::Object& b_override,
int width, int height, int width, int height,
const char *viewname); const char *viewname);
void sync_view(BL::SpaceView3D& b_v3d, void sync_view(BL::SpaceView3D& b_v3d,
BL::RegionView3D& b_rv3d, BL::RegionView3D& b_rv3d,
int width, int height); int width, int height);

View File

@@ -1188,12 +1188,12 @@ bool device_cuda_init(void)
if(cuew_result == CUEW_SUCCESS) { if(cuew_result == CUEW_SUCCESS) {
VLOG(1) << "CUEW initialization succeeded"; VLOG(1) << "CUEW initialization succeeded";
if(CUDADevice::have_precompiled_kernels()) { if(CUDADevice::have_precompiled_kernels()) {
VLOG(1) << "Found precompiled kernels"; VLOG(1) << "Found precompiled kernels";
result = true; result = true;
} }
#ifndef _WIN32 #ifndef _WIN32
else if(cuewCompilerPath() != NULL) { else if(cuewCompilerPath() != NULL) {
VLOG(1) << "Found CUDA compiled " << cuewCompilerPath(); VLOG(1) << "Found CUDA compiler " << cuewCompilerPath();
result = true; result = true;
} }
else { else {