Home | History | Annotate | Download | only in tnl

Lines Matching refs:store

53       struct point_stage_data *store = POINT_STAGE_DATA(stage);
61 GLfloat (*size)[4] = store->PointSize.data;
72 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
83 struct point_stage_data *store;
84 stage->privatePtr = malloc(sizeof(*store));
85 store = POINT_STAGE_DATA(stage);
86 if (!store)
89 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
97 struct point_stage_data *store = POINT_STAGE_DATA(stage);
98 if (store) {
99 _mesa_vector4f_free( &store->PointSize );
100 free( store );