From 0d34c0158d341ab42a3710d2bb195a8d3f2ac115 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 1 Jul 2005 01:30:03 +0000 Subject: fix typo in assertions --- src/mesa/shader/nvvertexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/shader/nvvertexec.c b/src/mesa/shader/nvvertexec.c index c294bca5c2..725e3ec9cd 100644 --- a/src/mesa/shader/nvvertexec.c +++ b/src/mesa/shader/nvvertexec.c @@ -145,7 +145,7 @@ _mesa_init_vp_per_primitive_registers(GLcontext *ctx) } else if (ctx->VertexProgram.TrackMatrixTransform[i] == GL_INVERSE_NV) { _math_matrix_analyse(mat); /* update the inverse */ - ASSERT(!math_matrix_is_dirty(mat)); + ASSERT(!_math_matrix_is_dirty(mat)); load_matrix(ctx->VertexProgram.Parameters, i*4, mat->inv); } else if (ctx->VertexProgram.TrackMatrixTransform[i] == GL_TRANSPOSE_NV) { @@ -155,7 +155,7 @@ _mesa_init_vp_per_primitive_registers(GLcontext *ctx) assert(ctx->VertexProgram.TrackMatrixTransform[i] == GL_INVERSE_TRANSPOSE_NV); _math_matrix_analyse(mat); /* update the inverse */ - ASSERT(!math_matrix_is_dirty(mat)); + ASSERT(!_math_matrix_is_dirty(mat)); load_transpose_matrix(ctx->VertexProgram.Parameters, i*4, mat->inv); } } -- cgit v1.2.3