diff options
author | Brian Paul <[email protected]> | 2005-07-01 01:30:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-07-01 01:30:03 +0000 |
commit | 0d34c0158d341ab42a3710d2bb195a8d3f2ac115 (patch) | |
tree | 210d5223a36cb1dc83a515b3d7faddc5163c55e1 /src/mesa/shader | |
parent | f4f1c2959767a65cd592a978e238a039c15b9635 (diff) |
fix typo in assertions
Diffstat (limited to 'src/mesa/shader')
-rw-r--r-- | src/mesa/shader/nvvertexec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/nvvertexec.c b/src/mesa/shader/nvvertexec.c index c294bca5c27..725e3ec9cd5 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); } } |