From db6aa58267cad3f502f03ab80b9deb6b75320a91 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 10 Nov 2000 17:23:02 +0000 Subject: patched to silence compiler warnings (Martin Lindhe) --- src/glu/mesa/nurbscrv.c | 4 ++-- src/glu/mesa/nurbsutl.c | 4 ++-- src/glu/mesa/polytest.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/glu/mesa') diff --git a/src/glu/mesa/nurbscrv.c b/src/glu/mesa/nurbscrv.c index a9ff4f2867..5bde023275 100644 --- a/src/glu/mesa/nurbscrv.c +++ b/src/glu/mesa/nurbscrv.c @@ -1,4 +1,4 @@ -/* $Id: nurbscrv.c,v 1.2 2000/07/11 14:11:04 brianp Exp $ */ +/* $Id: nurbscrv.c,v 1.3 2000/11/10 17:23:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -359,7 +359,7 @@ do_nurbs_curve(GLUnurbsObj * nobj) GLint n_ctrl; GLfloat *new_geom_ctrl, *new_color_ctrl, *new_normal_ctrl, *new_texture_ctrl; - GLfloat *geom_ctrl, *color_ctrl, *normal_ctrl, *texture_ctrl; + GLfloat *geom_ctrl = 0, *color_ctrl = 0, *normal_ctrl = 0, *texture_ctrl = 0; GLint *factors; GLint i, j; GLint geom_dim, color_dim = 0, normal_dim = 0, texture_dim = 0; diff --git a/src/glu/mesa/nurbsutl.c b/src/glu/mesa/nurbsutl.c index 516984b314..027f245827 100644 --- a/src/glu/mesa/nurbsutl.c +++ b/src/glu/mesa/nurbsutl.c @@ -1,4 +1,4 @@ -/* $Id: nurbsutl.c,v 1.3 2000/07/11 20:39:00 brianp Exp $ */ +/* $Id: nurbsutl.c,v 1.4 2000/11/10 17:23:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -130,7 +130,7 @@ set_new_t_min_t_max(knot_str_type * geom_knot, knot_str_type * color_knot, knot_str_type * normal_knot, knot_str_type * texture_knot, GLfloat maximal_min_knot, GLfloat minimal_max_knot) { - GLuint t_min, t_max, cnt; + GLuint t_min = 0, t_max = 0, cnt = 0; if (minimal_max_knot - maximal_min_knot < EPSILON) { /* knot common range empty */ diff --git a/src/glu/mesa/polytest.c b/src/glu/mesa/polytest.c index 0995cb032f..ccf9cdd4b4 100644 --- a/src/glu/mesa/polytest.c +++ b/src/glu/mesa/polytest.c @@ -1,4 +1,4 @@ -/* $Id: polytest.c,v 1.3 2000/07/11 14:11:04 brianp Exp $ */ +/* $Id: polytest.c,v 1.4 2000/11/10 17:23:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -786,7 +786,7 @@ cut_out_hole(GLUtriangulatorObj * tobj, tess_vertex *v1, *v2, *tmp_vertex; GLuint vertex1_cnt, vertex2_cnt, tmp_vertex_cnt; GLuint i, j, k; - GLenum test; + GLenum test = 0; /* find an edge connecting contour and hole not intersecting any other */ /* edge belonging to either the contour or any of the other holes */ -- cgit v1.2.3