diff options
author | Keith Whitwell <[email protected]> | 2008-09-20 08:26:11 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 09:46:00 -0700 |
commit | 32ef6e75839d6be283e034436e5dd34eabb67958 (patch) | |
tree | 7d8ac6e9236a5822d31481936ae0963154efa377 /src/mesa/tnl/t_context.c | |
parent | e019ead5d76fd4e6e7d47d23e0284058391e1e29 (diff) |
mesa: move fixed function vertex program builder from tnl to core mesa
Also unify caching of fragment and vertex programs in shader/prog_cache.c`
Brought across from gallium-0.2
Diffstat (limited to 'src/mesa/tnl/t_context.c')
-rw-r--r-- | src/mesa/tnl/t_context.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index 00f43b553bd..8977fadcca2 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -61,7 +61,6 @@ _tnl_CreateContext( GLcontext *ctx ) /* Initialize tnl state. */ if (ctx->VertexProgram._MaintainTnlProgram) { - _tnl_ProgramCacheInit( ctx ); _tnl_install_pipeline( ctx, _tnl_vp_pipeline ); } else { _tnl_install_pipeline( ctx, _tnl_default_pipeline ); @@ -90,9 +89,6 @@ _tnl_DestroyContext( GLcontext *ctx ) _tnl_destroy_pipeline( ctx ); - if (ctx->VertexProgram._MaintainTnlProgram) - _tnl_ProgramCacheDestroy( ctx ); - FREE(tnl); ctx->swtnl_context = NULL; } |