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:
authorCampbell Barton <ideasman42@gmail.com>2015-05-15 16:38:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-15 16:38:53 +0300
commit31e96cbf96a2bd26b77a29bf4cd8475a53521539 (patch)
tree37c02eb07682c7800b1785a809309fa6602e0009 /intern
parent2fa4a48bcef05671890fafc3fe50a8fa619f0259 (diff)
Cleanup: style, spelling
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/device/device_opencl.cpp8
-rw-r--r--intern/cycles/kernel/kernel_types.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp
index 75d08cb44b1..f77b567a093 100644
--- a/intern/cycles/device/device_opencl.cpp
+++ b/intern/cycles/device/device_opencl.cpp
@@ -1104,7 +1104,7 @@ protected:
clGetDeviceInfo(cdDevice, CL_DEVICE_COMPUTE_CAPABILITY_MINOR_NV,
sizeof(cl_uint), &compute_capability_minor, NULL);
- build_options += string_printf("-D__COMPUTE_CAPABILITY__=%d ",
+ build_options += string_printf("-D__COMPUTE_CAPABILITY__=%u ",
compute_capability_major * 100 +
compute_capability_minor * 10);
}
@@ -1449,7 +1449,7 @@ public:
};
/* TODO(sergey): This is to keep tile split on OpenCL level working
- * for now, since withotu this viewport render does not work as it
+ * for now, since without this view-port render does not work as it
* should.
*
* Ideally it'll be done on the higher level, but we need to get ready
@@ -1489,7 +1489,7 @@ public:
buffers = tile.buffers;
}
- /* Split kernel is device global memory constained;
+ /* Split kernel is device global memory constrained;
* hence split kernel cant render big tile size's in
* one go. If the user sets a big tile size (big tile size
* is a term relative to the available device global memory),
@@ -1536,7 +1536,7 @@ public:
/* Global memory variables [porting]; These memory is used for
* co-operation between different kernels; Data written by one
- * kernel will be avaible to another kernel via this global
+ * kernel will be available to another kernel via this global
* memory.
*/
cl_mem rng_coop;
diff --git a/intern/cycles/kernel/kernel_types.h b/intern/cycles/kernel/kernel_types.h
index 769ffa87e4e..294a491c532 100644
--- a/intern/cycles/kernel/kernel_types.h
+++ b/intern/cycles/kernel/kernel_types.h
@@ -467,7 +467,7 @@ typedef struct differential {
typedef struct Ray {
/* TODO(sergey): This is only needed because current AMD
- * compilet has hard time bulding the kernel with this
+ * compiler has hard time building the kernel with this
* reshuffle. And at the same time reshuffle will cause
* less optimal CPU code in certain places.
*