This commit is contained in:
Campbell Barton 2014-08-07 14:42:47 +10:00
parent e13d6e2768
commit 0b6412607f
4 changed files with 14 additions and 13 deletions

View File

@ -30,8 +30,6 @@
/** \file BLI_gsqueue.h
* \ingroup bli
* \brief A generic structure queue (a queue for fixed length
* (generally small) structures.
*/
typedef struct _GSQueue GSQueue;
@ -46,4 +44,3 @@ void BLI_gsqueue_pushback(GSQueue *gq, const void *item);
void BLI_gsqueue_free(GSQueue *gq);
#endif /* __BLI_GSQUEUE_H__ */

View File

@ -38,17 +38,12 @@
int BLI_linklist_length(LinkNode *list)
{
if (0) {
return list ? (1 + BLI_linklist_length(list->next)) : 0;
}
else {
int len;
int len;
for (len = 0; list; list = list->next)
len++;
return len;
}
for (len = 0; list; list = list->next)
len++;
return len;
}
int BLI_linklist_index(LinkNode *list, void *ptr)

View File

@ -27,6 +27,12 @@
/** \file blender/blenlib/intern/gsqueue.c
* \ingroup bli
*
* \brief A generic structure queue
* (a queue for fixed length generally small) structures.
*
* \note Only use this if you need (first-in-first-out),
* otherwise #BLI_stack is more efficient (first-in-last-out).
*/
#include <string.h>

View File

@ -865,6 +865,9 @@ unsigned int BLI_scanfill_calc_ex(ScanFillContext *sf_ctx, const int flag, const
/* Newell's Method */
/* Similar code used elsewhere, but this checks for double ups
* which historically this function supports so better not change */
/* warning: this only gives stable direction with single polygons,
* ideally we'd calcualte connectivity and calculate each polys normal, see T41047 */
const float *v_prev;
zero_v3(n);