summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-01-20 04:02:02 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-01-20 04:02:02 +0000
commitea2943efd95c0760a5423236ed37655d863b8a5e (patch)
treee86344d411aadf9b698a79896ed78469f7129285 /src/mesa/main/mtypes.h
parent36da0459e4d0b12ab46f0e2090d107a22f68844a (diff)
Update glDeletePrograms/Buffers() so that the ID is freed immediately, like
texture objects.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 026e6c60a0..ed6e6b02b3 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1475,7 +1475,6 @@ struct gl_buffer_object
GLuint Size; /**< Size of storage in bytes */
GLubyte *Data; /**< Location of storage either in RAM or VRAM. */
GLboolean OnCard; /**< Is buffer in VRAM? (hardware drivers) */
- GLboolean DeletePending; /**< Deleted by user but RefCount > 0? */
};
@@ -1706,7 +1705,6 @@ struct program
{
GLuint Id;
GLubyte *String; /**< Null-terminated program text */
- GLboolean DeletePending; /**< User called glDeletePrograms? */
GLint RefCount;
GLenum Target;
GLenum Format; /**< String encoding format */