diff options
author | Marek Olšák <[email protected]> | 2009-11-20 04:52:49 +0100 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-11-21 14:52:26 -0800 |
commit | 44c0aaf990f46c6dcb46d58dda0c182f5d40cb42 (patch) | |
tree | f1e4732c7d839d636360db49075b536629d659d6 /src/gallium/drivers/r300/r300_context.c | |
parent | 3a2cd66af8774af15eabef655ded9b48e67242d5 (diff) |
r300g: do not reallocate r300_vertex_info and r300_rs_block all the time
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 26db536248e..769733b6dd9 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -69,6 +69,7 @@ static void r300_destroy_context(struct pipe_context* context) FREE(r300->blend_color_state); FREE(r300->rs_block); FREE(r300->scissor_state); + FREE(r300->vertex_info); FREE(r300->viewport_state); FREE(r300); } @@ -152,6 +153,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, r300->blend_color_state = CALLOC_STRUCT(r300_blend_color_state); r300->rs_block = CALLOC_STRUCT(r300_rs_block); r300->scissor_state = CALLOC_STRUCT(r300_scissor_state); + r300->vertex_info = CALLOC_STRUCT(r300_vertex_info); r300->viewport_state = CALLOC_STRUCT(r300_viewport_state); /* Open up the OQ BO. */ |