Home
last modified time | relevance | path

Searched refs:privatePtr (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/mesa/tnl/
Dt_vb_texmat.c51 #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()
Dt_vb_points.c41 #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()
Dt_vb_normals.c45 #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()
Dt_vb_vertex.c52 #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()
Dt_vb_fog.c45 #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()
Dt_vb_light.c77 #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()
Dt_vb_program.c79 #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()
Dt_vb_texgen.c78 #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()
Dt_context.h236 void *privatePtr; member