diff options
author | Brian Paul <[email protected]> | 2008-05-07 18:51:44 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-07 18:51:44 -0600 |
commit | 5b5c9315275752add1215dba0f86d5f5068d856b (patch) | |
tree | 90dec078e7417a98ae9be307ee5fb8f6a3705bff /src/mesa/tnl/t_context.h | |
parent | 12a317b93a635a623a8d0b9d0cb200ba8b3ae98b (diff) |
fix refcounting bugs in tnl/tex program caches
Diffstat (limited to 'src/mesa/tnl/t_context.h')
-rw-r--r-- | src/mesa/tnl/t_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index baf283ef0f6..1ac508f0330 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -388,7 +388,7 @@ struct tnl_clipspace struct tnl_cache_item { GLuint hash; void *key; - void *data; + struct gl_vertex_program *prog; struct tnl_cache_item *next; }; |