diff options
author | Brian Paul <[email protected]> | 2004-08-14 14:28:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-08-14 14:28:11 +0000 |
commit | 21841f0ae5ca9b55ee23ecaa3513e91b6752aa16 (patch) | |
tree | e1b1fabb444d50c23a8461ab3839761756e1fb9b /src/mesa/main/occlude.h | |
parent | f226191d52b98eab83a1761f48c88688a4a27408 (diff) |
fix some memory leaks (bug #1002030)
Diffstat (limited to 'src/mesa/main/occlude.h')
-rw-r--r-- | src/mesa/main/occlude.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/occlude.h b/src/mesa/main/occlude.h index 5696463aecf..acf19101f14 100644 --- a/src/mesa/main/occlude.h +++ b/src/mesa/main/occlude.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 5.1 + * Version: 6.0.2 * - * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -30,6 +30,9 @@ extern void _mesa_init_occlude(GLcontext *ctx); +extern void +_mesa_free_occlude_data(GLcontext *ctx); + extern void GLAPIENTRY _mesa_GenQueriesARB(GLsizei n, GLuint *ids); |