st_atom_shader.h File Reference

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void st_free_translated_vertex_programs (struct st_context *st, struct translated_vertex_program *xvp)


Function Documentation

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 }


Generated on Tue Sep 29 06:25:51 2009 for Gallium3D by  doxygen 1.5.4