diff options
author | Brian Paul <[email protected]> | 2008-06-25 08:45:14 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-25 08:45:14 -0600 |
commit | d378f7b3dfda3b549e4b02380e492671cc34bb59 (patch) | |
tree | 8fe372ac889e42465f7e7173ebf20aa2ea18a3e5 /src/mesa/main/arrayobj.c | |
parent | 0561a293b6596641c0200df7e6580599ecb8b111 (diff) |
mesa: point size arrays
Diffstat (limited to 'src/mesa/main/arrayobj.c')
-rw-r--r-- | src/mesa/main/arrayobj.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/arrayobj.c b/src/mesa/main/arrayobj.c index f08f99d8e17..d62661e2b52 100644 --- a/src/mesa/main/arrayobj.c +++ b/src/mesa/main/arrayobj.c @@ -164,6 +164,15 @@ _mesa_initialize_array_object( GLcontext *ctx, obj->VertexAttrib[i].Normalized = GL_FALSE; } +#if FEATURE_point_size_array + obj->PointSize.Type = GL_FLOAT; + obj->PointSize.Stride = 0; + obj->PointSize.StrideB = 0; + obj->PointSize.Ptr = NULL; + obj->PointSize.Enabled = GL_FALSE; + obj->PointSize.BufferObj = ctx->Array.NullBufferObj; +#endif + #if FEATURE_ARB_vertex_buffer_object /* Vertex array buffers */ obj->Vertex.BufferObj = ctx->Array.NullBufferObj; |