Home | History | Annotate | Download | only in softpipe

Lines Matching refs:velems

46    struct sp_velems_state *velems;
48 velems = (struct sp_velems_state *) MALLOC(sizeof(struct sp_velems_state));
49 if (velems) {
50 velems->count = count;
51 memcpy(velems->velem, attribs, sizeof(*attribs) * count);
53 return velems;
59 void *velems)
62 struct sp_velems_state *sp_velems = (struct sp_velems_state *) velems;
64 softpipe->velems = sp_velems;
74 softpipe_delete_vertex_elements_state(struct pipe_context *pipe, void *velems)
76 FREE( velems );