Listing the "Blender Foundation" as copyright holder implied the Blender Foundation holds copyright to files which may include work from many developers. While keeping copyright on headers makes sense for isolated libraries, Blender's own code may be refactored or moved between files in a way that makes the per file copyright holders less meaningful. Copyright references to the "Blender Foundation" have been replaced with "Blender Authors", with the exception of `./extern/` since these this contains libraries which are more isolated, any changed to license headers there can be handled on a case-by-case basis. Some directories in `./intern/` have also been excluded: - `./intern/cycles/` it's own `AUTHORS` file is planned. - `./intern/opensubdiv/`. An "AUTHORS" file has been added, using the chromium projects authors file as a template. Design task: #110784 Ref !110783.
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup bli
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct BLI_Iterator {
|
|
void *current; /* current pointer we iterate over */
|
|
void *data; /* stored data required for this iterator */
|
|
bool skip;
|
|
bool valid;
|
|
} BLI_Iterator;
|
|
|
|
typedef void (*IteratorCb)(BLI_Iterator *iter);
|
|
typedef void (*IteratorBeginCb)(BLI_Iterator *iter, void *data_in);
|
|
|
|
#define BLI_ITERATOR_INIT(iter) \
|
|
{ \
|
|
(iter)->skip = false; \
|
|
(iter)->valid = true; \
|
|
} \
|
|
((void)0)
|
|
|
|
#define ITER_BEGIN(callback_begin, callback_next, callback_end, _data_in, _type, _instance) \
|
|
{ \
|
|
_type _instance; \
|
|
IteratorCb callback_end_func = callback_end; \
|
|
BLI_Iterator iter_macro; \
|
|
BLI_ITERATOR_INIT(&iter_macro); \
|
|
for (callback_begin(&iter_macro, (_data_in)); iter_macro.valid; callback_next(&iter_macro)) { \
|
|
if (iter_macro.skip) { \
|
|
iter_macro.skip = false; \
|
|
continue; \
|
|
} \
|
|
_instance = (_type)iter_macro.current;
|
|
|
|
#define ITER_END \
|
|
} \
|
|
callback_end_func(&iter_macro); \
|
|
} \
|
|
((void)0)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|