Visualization Library 2.0.0-b5
A lightweight C++ OpenGL middleware for 2D/3D graphics
|
[Download] [Tutorials] [All Classes] [Grouped Classes] |
#include <ft2build.h>
Go to the source code of this file.
Classes | |
struct | FTC_MruNodeRec_ |
struct | FTC_MruListClassRec_ |
struct | FTC_MruListRec_ |
Macros | |
#define | xxFT_DEBUG_ERROR |
#define | FTC_INLINE |
#define | FTC_MRULIST_LOOKUP_CMP(list, key, compare, node, error) |
#define | FTC_MRULIST_LOOKUP(list, key, node, error) FTC_MRULIST_LOOKUP_CMP( list, key, (list)->clazz.node_compare, node, error ) |
#define | FTC_MRULIST_LOOP(list, node) |
#define | FTC_MRULIST_LOOP_END() |
Typedefs | |
typedef typedefFT_BEGIN_HEADER struct FTC_MruNodeRec_ * | FTC_MruNode |
typedef struct FTC_MruNodeRec_ | FTC_MruNodeRec |
typedef struct FTC_MruListRec_ * | FTC_MruList |
typedef struct FTC_MruListClassRec_ const * | FTC_MruListClass |
typedef FT_Bool(* | FTC_MruNode_CompareFunc) (FTC_MruNode node, FT_Pointer key) |
typedef FT_Error(* | FTC_MruNode_InitFunc) (FTC_MruNode node, FT_Pointer key, FT_Pointer data) |
typedef FT_Error(* | FTC_MruNode_ResetFunc) (FTC_MruNode node, FT_Pointer key, FT_Pointer data) |
typedef void(* | FTC_MruNode_DoneFunc) (FTC_MruNode node, FT_Pointer data) |
typedef struct FTC_MruListClassRec_ | FTC_MruListClassRec |
typedef struct FTC_MruListRec_ | FTC_MruListRec |
Functions | |
FTC_MruNode_Prepend (FTC_MruNode *plist, FTC_MruNode node) | |
FTC_MruNode_Up (FTC_MruNode *plist, FTC_MruNode node) | |
FTC_MruNode_Remove (FTC_MruNode *plist, FTC_MruNode node) | |
FTC_MruList_Init (FTC_MruList list, FTC_MruListClass clazz, FT_UInt max_nodes, FT_Pointer data, FT_Memory memory) | |
FTC_MruList_Reset (FTC_MruList list) | |
FTC_MruList_Done (FTC_MruList list) | |
FTC_MruList_New (FTC_MruList list, FT_Pointer key, FTC_MruNode *anode) | |
FTC_MruList_Remove (FTC_MruList list, FTC_MruNode node) | |
FTC_MruList_RemoveSelection (FTC_MruList list, FTC_MruNode_CompareFunc selection, FT_Pointer key) | |
#define FTC_MRULIST_LOOKUP | ( | list, | |
key, | |||
node, | |||
error | |||
) | FTC_MRULIST_LOOKUP_CMP( list, key, (list)->clazz.node_compare, node, error ) |
Definition at line 196 of file ftcmru.h.
Referenced by FTC_GCache_New().
#define FTC_MRULIST_LOOKUP_CMP | ( | list, | |
key, | |||
compare, | |||
node, | |||
error | |||
) |
Definition at line 162 of file ftcmru.h.
Referenced by FTC_Manager_LookupFace(), and FTC_Manager_LookupSize().
#define FTC_MRULIST_LOOP | ( | list, | |
node | |||
) |
#define FTC_MRULIST_LOOP_END | ( | ) |
typedef struct FTC_MruListRec_* FTC_MruList |
typedef struct FTC_MruListClassRec_ const* FTC_MruListClass |
typedef struct FTC_MruListClassRec_ FTC_MruListClassRec |
typedef struct FTC_MruListRec_ FTC_MruListRec |
typedef typedefFT_BEGIN_HEADER struct FTC_MruNodeRec_* FTC_MruNode |
typedef FT_Bool(* FTC_MruNode_CompareFunc) (FTC_MruNode node, FT_Pointer key) |
typedef void(* FTC_MruNode_DoneFunc) (FTC_MruNode node, FT_Pointer data) |
typedef FT_Error(* FTC_MruNode_InitFunc) (FTC_MruNode node, FT_Pointer key, FT_Pointer data) |
typedef FT_Error(* FTC_MruNode_ResetFunc) (FTC_MruNode node, FT_Pointer key, FT_Pointer data) |
typedef struct FTC_MruNodeRec_ FTC_MruNodeRec |
FTC_MruList_Done | ( | FTC_MruList | list | ) |
Definition at line 195 of file ftcmru.c.
References FTC_MruListRec_::clazz, FT_LOCAL_DEF, FTC_MruList_Reset(), FTC_MruNode_Up(), FTC_MruListClassRec_::node_compare, FTC_MruListRec_::nodes, and NULL.
Referenced by ftc_gcache_done(), and FTC_Manager_Done().
FTC_MruList_Init | ( | FTC_MruList | list, |
FTC_MruListClass | clazz, | ||
FT_UInt | max_nodes, | ||
FT_Pointer | data, | ||
FT_Memory | memory | ||
) |
Definition at line 169 of file ftcmru.c.
References FT_LOCAL_DEF, and NULL.
Referenced by ftc_gcache_init(), and FTC_Manager_New().
FTC_MruList_New | ( | FTC_MruList | list, |
FT_Pointer | key, | ||
FTC_MruNode * | anode | ||
) |
Definition at line 236 of file ftcmru.c.
References FTC_MruListRec_::clazz, FTC_MruListRec_::data, error, FT_ALLOC, FT_ASSERT, FT_FREE, FT_LOCAL_DEF, FTC_MruList_New(), FTC_MruNode_Prepend(), FTC_MruNode_Remove(), FTC_MruNode_Up(), FTC_MruListRec_::max_nodes, FTC_MruListRec_::memory, FTC_MruListClassRec_::node_done, FTC_MruListClassRec_::node_init, FTC_MruListClassRec_::node_reset, FTC_MruListClassRec_::node_size, FTC_MruListRec_::nodes, NULL, and FTC_MruListRec_::num_nodes.
Referenced by FTC_MruList_New().
FTC_MruList_Remove | ( | FTC_MruList | list, |
FTC_MruNode | node | ||
) |
Definition at line 308 of file ftcmru.c.
References FTC_MruListRec_::clazz, FTC_MruListRec_::data, FT_FREE, FT_LOCAL_DEF, FTC_MruNode_Remove(), FTC_MruListRec_::memory, FTC_MruListClassRec_::node_done, FTC_MruListRec_::nodes, and FTC_MruListRec_::num_nodes.
Referenced by FTC_MruList_RemoveSelection(), and FTC_MruList_Reset().
FTC_MruList_RemoveSelection | ( | FTC_MruList | list, |
FTC_MruNode_CompareFunc | selection, | ||
FT_Pointer | key | ||
) |
Definition at line 327 of file ftcmru.c.
References FTC_MruList_Remove(), FTC_MruListRec_::nodes, and NULL.
Referenced by ftc_face_node_done(), and FTC_Manager_RemoveFaceID().
FTC_MruList_Reset | ( | FTC_MruList | list | ) |
Definition at line 185 of file ftcmru.c.
References FT_ASSERT, FT_LOCAL_DEF, and FTC_MruList_Remove().
Referenced by FTC_Manager_Reset(), and FTC_MruList_Done().
FTC_MruNode_Prepend | ( | FTC_MruNode * | plist, |
FTC_MruNode | node | ||
) |
FTC_MruNode_Remove | ( | FTC_MruNode * | plist, |
FTC_MruNode | node | ||
) |
Definition at line 122 of file ftcmru.c.
References FT_ASSERT, FT_LOCAL_DEF, and NULL.
Referenced by FTC_MruList_New(), and FTC_MruList_Remove().
FTC_MruNode_Up | ( | FTC_MruNode * | plist, |
FTC_MruNode | node | ||
) |
Definition at line 73 of file ftcmru.c.
References FT_ASSERT, FT_LOCAL_DEF, and NULL.
Referenced by FTC_MruList_Done(), and FTC_MruList_New().
Visualization Library 2.0.0-b5 Reference Documentation
Updated on Mon Feb 10 2020 02:44:55.
© Copyright Michele Bosi. All rights reserved.