Lines Matching refs:store
35 /* Display list compiler attempts to store lists of vertices with the
175 realloc_prim_store(struct vbo_save_primitive_store *store, int prim_count)
177 if (store == NULL)
178 store = CALLOC_STRUCT(vbo_save_primitive_store);
180 uint32_t old_size = store->size;
181 store->size = prim_count;
182 assert (old_size < store->size);
183 store->prims = realloc(store->prims, store->size * sizeof(struct _mesa_prim));
184 memset(&store->prims[old_size], 0, (store->size - old_size) * sizeof(struct _mesa_prim));
186 return store;
764 /* How many bytes do we need to store the indices and the vertices */
1021 /* store the copied vertices, and allocate a new list.