Lines Matching refs:store
59 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage);
71 (void) TransformRaw( &store->texcoord[i],
75 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = &store->texcoord[i];
89 struct texmat_stage_data *store;
92 stage->privatePtr = CALLOC(sizeof(*store));
93 store = TEXMAT_STAGE_DATA(stage);
94 if (!store)
98 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 );
106 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage);
109 if (store) {
111 if (store->texcoord[i].data)
112 _mesa_vector4f_free( &store->texcoord[i] );
113 FREE( store );