Go to the source code of this file.
Functions | |
void | st_free_translated_vertex_programs (struct st_context *st, struct translated_vertex_program *xvp) |
void st_free_translated_vertex_programs | ( | struct st_context * | st, | |
struct translated_vertex_program * | xvp | |||
) |
Definition at line 294 of file st_atom_shader.c.
References translated_vertex_program::next.
00296 { 00297 struct translated_vertex_program *next; 00298 00299 while (xvp) { 00300 next = xvp->next; 00301 free(xvp); 00302 xvp = next; 00303 } 00304 }