projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
5e063ce
)
Cleanup: typos
author
Campbell Barton <ideasman42@gmail.com>
Wed, 8 Jun 2016 12:25:23 +0000
(22:25 +1000)
committer
Campbell Barton <ideasman42@gmail.com>
Wed, 8 Jun 2016 12:25:23 +0000
(22:25 +1000)
source/blender/blenkernel/intern/movieclip.c
patch
|
blob
|
history
source/blender/blenkernel/intern/tracking_util.c
patch
|
blob
|
history
source/blender/blenlib/intern/array_store.c
patch
|
blob
|
history
source/blender/editors/animation/keyframing.c
patch
|
blob
|
history
source/blender/editors/transform/transform_snap_object.c
patch
|
blob
|
history
diff --git
a/source/blender/blenkernel/intern/movieclip.c
b/source/blender/blenkernel/intern/movieclip.c
index a8d3c600817c5f8e73b7173e53589bb337d747ea..d2bfcfb08877db5dffbe5cec8467ac1596379758 100644
(file)
--- a/
source/blender/blenkernel/intern/movieclip.c
+++ b/
source/blender/blenkernel/intern/movieclip.c
@@
-608,7
+608,7
@@
static MovieClip *movieclip_alloc(Main *bmain, const char *name)
return clip;
}
return clip;
}
-static void movieclip_load_get_s
zi
e(MovieClip *clip)
+static void movieclip_load_get_s
iz
e(MovieClip *clip)
{
int width, height;
MovieClipUser user = {0};
{
int width, height;
MovieClipUser user = {0};
@@
-670,7
+670,7
@@
MovieClip *BKE_movieclip_file_add(Main *bmain, const char *name)
detect_clip_source(clip);
detect_clip_source(clip);
- movieclip_load_get_s
zi
e(clip);
+ movieclip_load_get_s
iz
e(clip);
if (clip->lastsize[0]) {
int width = clip->lastsize[0];
if (clip->lastsize[0]) {
int width = clip->lastsize[0];
@@
-1276,7
+1276,7
@@
void BKE_movieclip_reload(MovieClip *clip)
detect_clip_source(clip);
clip->lastsize[0] = clip->lastsize[1] = 0;
detect_clip_source(clip);
clip->lastsize[0] = clip->lastsize[1] = 0;
- movieclip_load_get_s
zi
e(clip);
+ movieclip_load_get_s
iz
e(clip);
movieclip_calc_length(clip);
movieclip_calc_length(clip);
diff --git
a/source/blender/blenkernel/intern/tracking_util.c
b/source/blender/blenkernel/intern/tracking_util.c
index 3c2444b0ef1fcf2ef57eca92a7e1410abcdafee6..a40e4f726366b7d83c91ed1cc47837be81fc7528 100644
(file)
--- a/
source/blender/blenkernel/intern/tracking_util.c
+++ b/
source/blender/blenkernel/intern/tracking_util.c
@@
-529,7
+529,7
@@
typedef struct AccessCacheKey {
static unsigned int accesscache_hashhash(const void *key_v)
{
const AccessCacheKey *key = (const AccessCacheKey *) key_v;
static unsigned int accesscache_hashhash(const void *key_v)
{
const AccessCacheKey *key = (const AccessCacheKey *) key_v;
- /* TODP(sergey): Need better hasing here for faster frame access. */
+ /* TODP(sergey): Need better has
h
ing here for faster frame access. */
return key->clip_index << 16 | key->frame;
}
return key->clip_index << 16 | key->frame;
}
diff --git
a/source/blender/blenlib/intern/array_store.c
b/source/blender/blenlib/intern/array_store.c
index 9baccf38fa34b9b1732f8b826231e79b01f33a8b..33565596c1f6c5b474b82469535fdb9f51b25f7b 100644
(file)
--- a/
source/blender/blenlib/intern/array_store.c
+++ b/
source/blender/blenlib/intern/array_store.c
@@
-36,7
+36,7
@@
*
* This diagram is an overview of the structure of a single array-store.
*
*
* This diagram is an overview of the structure of a single array-store.
*
- * \note The only 2 structues here which are referenced externally are the.
+ * \note The only 2 structu
r
es here which are referenced externally are the.
*
* - BArrayStore: The whole array store.
* - BArrayState: Represents a single state (array) of data.
*
* - BArrayStore: The whole array store.
* - BArrayState: Represents a single state (array) of data.
@@
-92,7
+92,7
@@
* First matches at either end of the array are detected.
* For identical arrays this is all thats needed.
*
* First matches at either end of the array are detected.
* For identical arrays this is all thats needed.
*
- * De-duplication is performed on any remaining chunks, by hasing the first few bytes of the chunk
+ * De-duplication is performed on any remaining chunks, by has
h
ing the first few bytes of the chunk
* (see: BCHUNK_HASH_TABLE_ACCUMULATE_STEPS).
*
* \note This is cached for reuse since the referenced data never changes.
* (see: BCHUNK_HASH_TABLE_ACCUMULATE_STEPS).
*
* \note This is cached for reuse since the referenced data never changes.
@@
-650,7
+650,7
@@
static void bchunk_list_append_data(
* Use for adding arrays of arbitrary sized memory at once.
*
* \note This function takes care not to perform redundant chunk-merging checks,
* Use for adding arrays of arbitrary sized memory at once.
*
* \note This function takes care not to perform redundant chunk-merging checks,
- * so we can write succesive fixed size chunks quickly.
+ * so we can write succes
s
ive fixed size chunks quickly.
*/
static void bchunk_list_append_data_n(
const BArrayInfo *info, BArrayMemory *bs_mem,
*/
static void bchunk_list_append_data_n(
const BArrayInfo *info, BArrayMemory *bs_mem,
@@
-1680,7
+1680,7
@@
void *BLI_array_store_state_data_get_alloc(
/** \} */
/** \} */
-/** \name Deb
i
gging API (for testing).
+/** \name Deb
u
gging API (for testing).
* \{ */
/* only for test validation */
* \{ */
/* only for test validation */
diff --git
a/source/blender/editors/animation/keyframing.c
b/source/blender/editors/animation/keyframing.c
index 172f2b9069e1e640f0002e52247e41c8208eae23..d0ae01d1a3fd1d204e836baf689ab4b9d5e686fa 100644
(file)
--- a/
source/blender/editors/animation/keyframing.c
+++ b/
source/blender/editors/animation/keyframing.c
@@
-2035,7
+2035,7
@@
bool autokeyframe_cfra_can_key(Scene *scene, ID *id)
else {
/* Normal Mode (or treat as being normal mode):
*
else {
/* Normal Mode (or treat as being normal mode):
*
- * Just in case the flags
are
't set properly (i.e. only on/off is set, without a mode)
+ * Just in case the flags
can
't set properly (i.e. only on/off is set, without a mode)
* let's set the "normal" flag too, so that it will all be sane everywhere...
*/
scene->toolsettings->autokey_mode = AUTOKEY_MODE_NORMAL;
* let's set the "normal" flag too, so that it will all be sane everywhere...
*/
scene->toolsettings->autokey_mode = AUTOKEY_MODE_NORMAL;
diff --git
a/source/blender/editors/transform/transform_snap_object.c
b/source/blender/editors/transform/transform_snap_object.c
index d7486372c3679052f82ad662c72581460977e6c1..f92f0b33faaf59ca4bf75a26948e72e6d688c60d 100644
(file)
--- a/
source/blender/editors/transform/transform_snap_object.c
+++ b/
source/blender/editors/transform/transform_snap_object.c
@@
-198,7
+198,7
@@
static void raycast_all_cb(void *userdata, int index, const BVHTreeRay *ray, BVH
mul_m3_v3((float(*)[3])data->timat, normal);
normalize_v3(normal);
mul_m3_v3((float(*)[3])data->timat, normal);
normalize_v3(normal);
- /* currently unused, and causes issues when looptri's havn't been calculated.
+ /* currently unused, and causes issues when looptri's hav
e
n't been calculated.
* since theres some overhead in ensuring this data is valid, it may need to be optional. */
#if 0
if (data->dm) {
* since theres some overhead in ensuring this data is valid, it may need to be optional. */
#if 0
if (data->dm) {
@@
-735,7
+735,7
@@
static bool snapDerivedMesh(
if (bb) {
BoundBox bb_temp;
if (bb) {
BoundBox bb_temp;
- /* We cannot af
ord a b
box with some null dimension, which may happen in some cases...
+ /* We cannot af
ford a bounding
box with some null dimension, which may happen in some cases...
* Threshold is rather high, but seems to be needed to get good behavior, see T46099. */
bb = BKE_boundbox_ensure_minimum_dimensions(bb, &bb_temp, 1e-1f);
* Threshold is rather high, but seems to be needed to get good behavior, see T46099. */
bb = BKE_boundbox_ensure_minimum_dimensions(bb, &bb_temp, 1e-1f);