Changeset View
Changeset View
Standalone View
Standalone View
source/blender/gpencil_modifiers/intern/lineart/lineart_intern.h
| Context not available. | |||||
| void *list_push_pointer_static_sized(ListBase *h, | void *list_push_pointer_static_sized(ListBase *h, | ||||
| struct LineartStaticMemPool *smp, | struct LineartStaticMemPool *smp, | ||||
| void *p, | void *p, | ||||
| int size); | int size); | ||||
| void *lineart_list_pop_pointer_no_free(ListBase *h); | void *lineart_list_pop_pointer_no_free(ListBase *h); | ||||
| void lineart_list_remove_pointer_item_no_free(ListBase *h, LinkData *lip); | void lineart_list_remove_pointer_item_no_free(ListBase *h, LinkData *lip); | ||||
| struct LineartStaticMemPoolNode *lineart_mem_new_static_pool(struct LineartStaticMemPool *smp, | struct LineartStaticMemPoolNode *lineart_mem_new_static_pool(struct LineartStaticMemPool *smp, | ||||
| size_t size); | size_t size); | ||||
| void *lineart_mem_aquire(struct LineartStaticMemPool *smp, size_t size); | void *lineart_mem_acquire(struct LineartStaticMemPool *smp, size_t size); | ||||
| void *lineart_mem_aquire_thread(struct LineartStaticMemPool *smp, size_t size); | void *lineart_mem_acquire_thread(struct LineartStaticMemPool *smp, size_t size); | ||||
| void lineart_mem_destroy(struct LineartStaticMemPool *smp); | void lineart_mem_destroy(struct LineartStaticMemPool *smp); | ||||
| void lineart_prepend_edge_direct(struct LineartEdge **first, void *node); | void lineart_prepend_edge_direct(struct LineartEdge **first, void *node); | ||||
| void lineart_prepend_pool(LinkNode **first, struct LineartStaticMemPool *smp, void *link); | void lineart_prepend_pool(LinkNode **first, struct LineartStaticMemPool *smp, void *link); | ||||
| void lineart_matrix_ortho_44d(double (*mProjection)[4], | void lineart_matrix_ortho_44d(double (*mProjection)[4], | ||||
| double xMin, | double xMin, | ||||
| double xMax, | double xMax, | ||||
| double yMin, | double yMin, | ||||
| double yMax, | double yMax, | ||||
| Context not available. | |||||