From 1f75c2daeae71985ec3b9fd8f1431aa33ae35d1e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 6 May 2009 15:09:18 -0600 Subject: mesa: add storage_count field to GLvector4f. Useful for debugging. --- src/mesa/math/m_vector.c | 1 + src/mesa/math/m_vector.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/mesa/math') diff --git a/src/mesa/math/m_vector.c b/src/mesa/math/m_vector.c index dd631376d0..0636421727 100644 --- a/src/mesa/math/m_vector.c +++ b/src/mesa/math/m_vector.c @@ -102,6 +102,7 @@ _mesa_vector4f_alloc( GLvector4f *v, GLuint flags, GLuint count, v->stride = 4 * sizeof(GLfloat); v->size = 2; v->storage = ALIGN_MALLOC( count * 4 * sizeof(GLfloat), alignment ); + v->storage_count = count; v->start = (GLfloat *) v->storage; v->data = (GLfloat (*)[4]) v->storage; v->count = 0; diff --git a/src/mesa/math/m_vector.h b/src/mesa/math/m_vector.h index 9112a2b5d5..fcf618a740 100644 --- a/src/mesa/math/m_vector.h +++ b/src/mesa/math/m_vector.h @@ -67,6 +67,7 @@ typedef struct { GLuint size; /**< 2-4 for vertices and 1-4 for texcoords */ GLuint flags; /**< which columns are dirty */ void *storage; /**< self-allocated storage */ + GLuint storage_count; /**< storage size in elements */ } GLvector4f; -- cgit v1.2.3