diff options
author | Brian <[email protected]> | 2007-10-31 12:34:09 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-31 12:34:09 -0600 |
commit | a35a2fc0d3aaa795a0088bfc390b98a033fc28de (patch) | |
tree | e9235a820fed399315daba5f6d8d9fe8c956ea34 /src/mesa/tnl/t_context.h | |
parent | 8db4acc5547370761a9a489c947e9621adc8f945 (diff) |
remove dead program cache code
Diffstat (limited to 'src/mesa/tnl/t_context.h')
-rw-r--r-- | src/mesa/tnl/t_context.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index baf283ef0f6..0a6ce046146 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -385,19 +385,6 @@ struct tnl_clipspace }; -struct tnl_cache_item { - GLuint hash; - void *key; - void *data; - struct tnl_cache_item *next; -}; - -struct tnl_cache { - struct tnl_cache_item **items; - GLuint size, n_items; -}; - - struct tnl_device_driver { /*** @@ -549,10 +536,6 @@ typedef struct GLubyte *block[VERT_ATTRIB_MAX]; GLuint nr_blocks; - /* Cache of fixed-function-replacing vertex programs: - */ - struct tnl_cache *vp_cache; - } TNLcontext; |