Searched refs:privatePtr (Results 1 – 9 of 9) sorted by relevance
51 #define TEXMAT_STAGE_DATA(stage) ((struct texmat_stage_data *)stage->privatePtr)91 stage->privatePtr = calloc(1, sizeof(*store)); in alloc_texmat_data()113 stage->privatePtr = NULL; in free_texmat_data()
41 #define POINT_STAGE_DATA(stage) ((struct point_stage_data *)stage->privatePtr)85 stage->privatePtr = malloc(sizeof(*store)); in alloc_point_data()102 stage->privatePtr = NULL; in free_point_data()
45 #define NORMAL_STAGE_DATA(stage) ((struct normal_stage_data *)stage->privatePtr)153 stage->privatePtr = malloc(sizeof(*store)); in alloc_normal_data()173 stage->privatePtr = NULL; in free_normal_data()
52 #define VERTEX_STAGE_DATA(stage) ((struct vertex_stage_data *)stage->privatePtr)140 struct vertex_stage_data *store = (struct vertex_stage_data *)stage->privatePtr; in run_vertex_stage()239 stage->privatePtr = calloc(1, sizeof(*store)); in init_vertex_stage()269 stage->privatePtr = NULL; in dtr()
45 #define FOG_STAGE_DATA(stage) ((struct fog_stage_data *)stage->privatePtr)242 stage->privatePtr = malloc(sizeof(*store)); in alloc_fog_data()263 stage->privatePtr = NULL; in free_fog_data()
77 #define LIGHT_STAGE_DATA(stage) ((struct light_stage_data *)(stage->privatePtr))428 stage->privatePtr = malloc(sizeof(*store)); in init_lighting()465 stage->privatePtr = NULL; in dtr()
79 #define VP_STAGE_DATA(stage) ((struct vp_stage_data *)(stage->privatePtr))475 stage->privatePtr = calloc(1, sizeof(*store)); in init_vp()508 stage->privatePtr = NULL; in dtr()
78 #define TEXGEN_STAGE_DATA(stage) ((struct texgen_stage_data *)stage->privatePtr)563 stage->privatePtr = calloc(1, sizeof(*store)); in alloc_texgen_data()593 stage->privatePtr = NULL; in free_texgen_data()
236 void *privatePtr; member