diff options
author | Brian <[email protected]> | 2007-10-30 12:24:05 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-30 12:25:25 -0600 |
commit | df174bdb818d4e21652d49c73ff17722e34a38b9 (patch) | |
tree | 3e9c160e6461d7e1a2717e9dbe67a393aa1ad53d /src/mesa/state_tracker/st_context.c | |
parent | 3e317996400778c3197bdaa7d95f8712205e589b (diff) |
added pixel_transfer_cache
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 8ced3f504c2..e872e8b12c5 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -92,6 +92,8 @@ struct st_context *st_create_context( GLcontext *ctx, st->haveFramebufferRegions = GL_TRUE; + st->pixel_transfer_cache = _mesa_new_program_cache(); + #if 0 st_init_cb_clear( st ); st_init_cb_program( st ); @@ -124,6 +126,8 @@ void st_destroy_context( struct st_context *st ) #endif cso_cache_delete( st->cache ); + _mesa_delete_program_cache(st->ctx, st->pixel_transfer_cache); + st->pipe->destroy( st->pipe ); FREE( st ); } |