diff options
Diffstat (limited to 'src/mesa/array_cache/ac_import.c')
-rw-r--r-- | src/mesa/array_cache/ac_import.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/array_cache/ac_import.c b/src/mesa/array_cache/ac_import.c index 3612a1e019b..119e58bf249 100644 --- a/src/mesa/array_cache/ac_import.c +++ b/src/mesa/array_cache/ac_import.c @@ -221,7 +221,7 @@ import( const GLcontext *ctx, switch (destType) { case GL_FLOAT: - _math_trans_4fc( (GLfloat (*)[4]) to->Ptr, + _math_trans_4fn( (GLfloat (*)[4]) to->Ptr, from->Ptr, from->StrideB, from->Type, @@ -343,7 +343,7 @@ import_normal( GLcontext *ctx, GLenum type, GLuint stride ) ASSERT(type == GL_FLOAT); ASSERT(stride == 3*sizeof(GLfloat) || stride == 0); - _math_trans_3f( (GLfloat (*)[3]) to->Ptr, + _math_trans_3fn((GLfloat (*)[3]) to->Ptr, from->Ptr, from->StrideB, from->Type, @@ -476,7 +476,7 @@ import_attrib( GLcontext *ctx, GLuint index, GLenum type, GLuint stride ) ASSERT(ac->count - ac->start < ctx->Const.MaxArrayLockSize); if (from->Normalized) { - _math_trans_4fc( (GLfloat (*)[4]) to->Ptr, + _math_trans_4fn( (GLfloat (*)[4]) to->Ptr, from->Ptr, from->StrideB, from->Type, |