Cleanup: style

This commit is contained in:
Campbell Barton 2014-11-01 14:31:09 +01:00
parent 31a83ee9f1
commit d658ea1b20
3 changed files with 4 additions and 4 deletions

@ -55,7 +55,7 @@ typedef struct AutoTrackOptions {
bool use_keyframe_match; /* Keyframe pattern matching. */ bool use_keyframe_match; /* Keyframe pattern matching. */
/* TODO(sergey): A bit awkward to keep it in here, only used to /* TODO(sergey): A bit awkward to keep it in here, only used to
* place a disabled marker once the trackign fails, * place a disabled marker once the tracking fails,
* Wither find a more clear way to do it or call it track context * Wither find a more clear way to do it or call it track context
* or state, not options. * or state, not options.
*/ */

@ -782,7 +782,7 @@ static ImBuf *accessor_get_ibuf(TrackingImageAccessor *accessor,
} }
} }
/* it's possible processing stil didn't happen at this point, /* it's possible processing still didn't happen at this point,
* but we really need a copy of the buffer to be transformed * but we really need a copy of the buffer to be transformed
* and to be put to the cache. * and to be put to the cache.
*/ */
@ -877,7 +877,7 @@ TrackingImageAccessor *tracking_image_accessor_new(MovieClip *clips[MAX_ACCESSOR
accesscache_hashhash, accesscache_hashhash,
accesscache_hashcmp); accesscache_hashcmp);
memcpy(accessor->clips, clips, num_clips * sizeof(MovieClip*)); memcpy(accessor->clips, clips, num_clips * sizeof(MovieClip *));
accessor->num_clips = num_clips; accessor->num_clips = num_clips;
accessor->start_frame = start_frame; accessor->start_frame = start_frame;

@ -82,7 +82,7 @@ typedef struct PathContext {
typedef struct PathLink { typedef struct PathLink {
struct PathLink *next; struct PathLink *next;
BMElem *ele; /* edge or vert */ BMElem *ele; /* edge or vert */
BMElem *ele_from; /* edge or face we game from (not 'next->ele') */ BMElem *ele_from; /* edge or face we came from (not 'next->ele') */
} PathLink; } PathLink;
typedef struct PathLinkState { typedef struct PathLinkState {