diff options
Diffstat (limited to 'src/mesa/array_cache')
-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 35d341d64e..ebf3a3dc47 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; |