Home | History | Annotate | Download | only in tnl

Lines Matching refs:store

147    struct fog_stage_data *store = FOG_STAGE_DATA(stage);
160 VB->AttribPtr[_TNL_ATTRIB_FOG] = &store->fogcoord;
167 /* Use this to store calculated eye z values:
169 input = &store->fogcoord;
195 input = &store->fogcoord;
218 VB->AttribPtr[_TNL_ATTRIB_FOG] = &store->fogcoord; /* dest data */
241 struct fog_stage_data *store;
242 stage->privatePtr = MALLOC(sizeof(*store));
243 store = FOG_STAGE_DATA(stage);
244 if (!store)
247 _mesa_vector4f_alloc( &store->fogcoord, 0, tnl->vb.Size, 32 );
259 struct fog_stage_data *store = FOG_STAGE_DATA(stage);
260 if (store) {
261 _mesa_vector4f_free( &store->fogcoord );
262 FREE( store );