diff options
author | Marek Olšák <[email protected]> | 2010-05-29 15:40:51 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-31 04:16:24 +0200 |
commit | 4182d3ea00538b421222104cbc08d9bd656be32e (patch) | |
tree | 551b0685423763c8c3f78c446a1510a5fd1d2b25 /src/gallium/drivers/r600/r600_context.h | |
parent | 33c2dbe5b0dc70349fd7793d11d1d83dd7ba5d77 (diff) |
r600g: remove unused struct r600_state
What was the purpose of it?
Diffstat (limited to 'src/gallium/drivers/r600/r600_context.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_context.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gallium/drivers/r600/r600_context.h b/src/gallium/drivers/r600/r600_context.h index cfaca6d23f0..8e996b7d204 100644 --- a/src/gallium/drivers/r600/r600_context.h +++ b/src/gallium/drivers/r600/r600_context.h @@ -32,9 +32,6 @@ #include "radeon.h" #include "r600_shader.h" -struct r600_state; -typedef void (*r600_state_destroy_t)(struct r600_state *rstate); - /* XXX move this to a more appropriate place */ struct r600_vertex_elements_state { @@ -42,17 +39,6 @@ struct r600_vertex_elements_state struct pipe_vertex_element elements[32]; }; -struct r600_state { - unsigned type; - struct r600_atom *atom; - void *state; - unsigned nbuffers; - struct pipe_buffer *buffer[256]; - unsigned nsurfaces; - struct pipe_surface *surface[256]; - r600_state_destroy_t destroy; -}; - struct r600_pipe_shader { unsigned type; struct r600_shader shader; @@ -91,10 +77,6 @@ void r600_draw_range_elements(struct pipe_context *ctx, unsigned max_index, unsigned mode, unsigned start, unsigned count); -void r600_state_destroy_common(struct r600_state *state); -struct r600_state *r600_state_new(r600_state_destroy_t destroy); -struct r600_state *r600_state_destroy(struct r600_state *state); - void r600_init_state_functions(struct r600_context *rctx); void r600_init_query_functions(struct r600_context* rctx); struct pipe_context *r600_create_context(struct pipe_screen *screen, void *priv); |