Home | History | Annotate | Download | only in tnl

Lines Matching refs:stage

51 #define TEXMAT_STAGE_DATA(stage) ((struct texmat_stage_data *)stage->privatePtr)
56 struct tnl_pipeline_stage *stage )
58 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage);
82 /* Called the first time stage->run() is invoked.
85 struct tnl_pipeline_stage *stage )
91 stage->privatePtr = calloc(1, sizeof(*store));
92 store = TEXMAT_STAGE_DATA(stage);
103 static void free_texmat_data( struct tnl_pipeline_stage *stage )
105 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage);
113 stage->privatePtr = NULL;