diff options
author | Keith Whitwell <[email protected]> | 2003-11-24 15:23:18 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2003-11-24 15:23:18 +0000 |
commit | ae0eaf93e092ac8e8b1c98f3e986de96940663fa (patch) | |
tree | 56aae7c4b985f657384df5e088227c4dd08130fb /src/mesa/array_cache/ac_context.c | |
parent | 57c9814b9e87924696df4c741861c29d4236d1eb (diff) |
Merge vtx-0-2-branch
Diffstat (limited to 'src/mesa/array_cache/ac_context.c')
-rw-r--r-- | src/mesa/array_cache/ac_context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/array_cache/ac_context.c b/src/mesa/array_cache/ac_context.c index 35d341d64e9..ebf3a3dc47b 100644 --- a/src/mesa/array_cache/ac_context.c +++ b/src/mesa/array_cache/ac_context.c @@ -93,7 +93,7 @@ static void _ac_fallbacks_init( GLcontext *ctx ) cl = &ac->Fallback.Index; cl->Size = 1; - cl->Type = GL_UNSIGNED_INT; + cl->Type = GL_FLOAT; cl->Stride = 0; cl->StrideB = 0; cl->Ptr = (GLubyte *) &ctx->Current.Index; @@ -217,9 +217,9 @@ static void _ac_cache_init( GLcontext *ctx ) cl = &ac->Cache.Index; cl->Size = 1; - cl->Type = GL_UNSIGNED_INT; + cl->Type = GL_FLOAT; cl->Stride = 0; - cl->StrideB = sizeof(GLuint); + cl->StrideB = sizeof(GLfloat); cl->Ptr = (GLubyte *) MALLOC( cl->StrideB * size ); cl->Enabled = 1; cl->Flags = 0; |