summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-03-04 14:46:00 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-03-04 14:46:00 +0000
commit94ec525ba5bc763210b1fb0198beeee2fe601b99 (patch)
tree4d89995eac45446e2e5a1ce9493c696950f0b2f7 /src/mesa/main/mtypes.h
parent3f94cef027041f57029de4cc165e0bad1e6634fa (diff)
yet another take on VBO deleting and reference counting
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index e090a3d683..3ef508b3f8 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1329,6 +1329,7 @@ struct gl_buffer_object {
GLvoid *Pointer; /**< Only valid while buffer is mapped */
GLuint Size; /**< Size of data array in bytes */
GLubyte *Data; /**< The storage */
+ GLboolean DeletePending; /**< Deleted by user? */
};