diff options
author | Brian Paul <[email protected]> | 2010-07-26 20:49:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-07-26 20:49:54 -0600 |
commit | dd0cf2e1f5d45337f7e5870ed957ac70f364ba52 (patch) | |
tree | c1ac4f3d74f23430d9dde676b505cbc2b05cb951 /src/gallium/drivers/cell/ppu/cell_state_vertex.c | |
parent | 0315c00f5897eb443254323be2b7b5ca213fbef2 (diff) |
cell: make functions static
Diffstat (limited to 'src/gallium/drivers/cell/ppu/cell_state_vertex.c')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_state_vertex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_state_vertex.c b/src/gallium/drivers/cell/ppu/cell_state_vertex.c index 9510ea9ac2b..69152b6cbf3 100644 --- a/src/gallium/drivers/cell/ppu/cell_state_vertex.c +++ b/src/gallium/drivers/cell/ppu/cell_state_vertex.c @@ -36,7 +36,7 @@ #include "draw/draw_context.h" -void * +static void * cell_create_vertex_elements_state(struct pipe_context *pipe, unsigned count, const struct pipe_vertex_element *attribs) @@ -51,7 +51,7 @@ cell_create_vertex_elements_state(struct pipe_context *pipe, return velems; } -void +static void cell_bind_vertex_elements_state(struct pipe_context *pipe, void *velems) { @@ -66,7 +66,7 @@ cell_bind_vertex_elements_state(struct pipe_context *pipe, draw_set_vertex_elements(cell->draw, cell_velems->count, cell_velems->velem); } -void +static void cell_delete_vertex_elements_state(struct pipe_context *pipe, void *velems) { FREE( velems ); |