Mesa (master): mesa: add storage_count field to GLvector4f. Useful for debugging.

Brian Paul brianp at kemper.freedesktop.org
Thu May 7 16:17:01 UTC 2009


Module: Mesa
Branch: master
Commit: 1f75c2daeae71985ec3b9fd8f1431aa33ae35d1e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1f75c2daeae71985ec3b9fd8f1431aa33ae35d1e

Author: Brian Paul <brianp at vmware.com>
Date:   Wed May  6 15:09:18 2009 -0600

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(+), 0 deletions(-)

diff --git a/src/mesa/math/m_vector.c b/src/mesa/math/m_vector.c
index dd63137..0636421 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 9112a2b..fcf618a 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;
 
 




More information about the mesa-commit mailing list