diff --git a/Geo/GModelIO_MED.cpp b/Geo/GModelIO_MED.cpp index b221e9f60660602b2e33db643b5768b597bd8be7..c58d11cad504bfccb5ab16efef877788f75e317f 100644 --- a/Geo/GModelIO_MED.cpp +++ b/Geo/GModelIO_MED.cpp @@ -1,4 +1,4 @@ -// $Id: GModelIO_MED.cpp,v 1.32 2008-04-16 22:10:53 geuzaine Exp $ +// $Id: GModelIO_MED.cpp,v 1.33 2008-04-17 18:21:11 geuzaine Exp $ // // Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle // @@ -150,11 +150,12 @@ int GModel::readMED(const std::string &name) return 0; } - med_int major, minor, release; - MEDversionDonner(&major, &minor, &release); - Msg(INFO, "Reading MED file using MED library V%d.%d.%d", major, minor, release); - MEDversionLire(fid, &major, &minor, &release); - if(major < 2 || (major == 2 && minor < 2)){ + med_int v[3], vf[3]; + MEDversionDonner(&v[0], &v[1], &v[2]); + MEDversionLire(fid, &vf[0], &vf[1], &vf[2]); + Msg(INFO, "Reading MED file V%d.%d.%d using MED library V%d.%d.%d", + vf[0], vf[1], vf[2], v[0], v[1], v[2]); + if(vf[0] < 2 || (vf[0] == 2 && vf[1] < 2)){ Msg(GERROR, "Cannot read MED file older than V2.2"); return 0; } diff --git a/Graphics/Entity.cpp b/Graphics/Entity.cpp index 5effa715b47bd8e6bf9ef99e4f3f69ece7f34c57..cd821367ebd0680565136b73aa244e8fa4b61255 100644 --- a/Graphics/Entity.cpp +++ b/Graphics/Entity.cpp @@ -1,4 +1,4 @@ -// $Id: Entity.cpp,v 1.83 2008-03-20 11:44:07 geuzaine Exp $ +// $Id: Entity.cpp,v 1.84 2008-04-17 18:21:11 geuzaine Exp $ // // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // @@ -43,22 +43,20 @@ void Draw_Point(int type, double size, double *x, double *y, double *z, void Draw_Sphere(double size, double x, double y, double z, int light) { if(light) glEnable(GL_LIGHTING); + + static int first = 1; static GLUquadricObj *qua; - static int first = 1, listnum; - double s = size * CTX.pixel_equiv_x / CTX.s[0]; // size is in pixels - if(first) { + + if(first){ first = 0; qua = gluNewQuadric(); - listnum = glGenLists(1); - glNewList(listnum, GL_COMPILE); - gluSphere(qua, 1, CTX.quadric_subdivisions, CTX.quadric_subdivisions); - glEndList(); } glPushMatrix(); glTranslated(x, y, z); + double s = size * CTX.pixel_equiv_x / CTX.s[0]; // size is in pixels glScaled(s, s, s); - glCallList(listnum); + gluSphere(qua, 1, CTX.quadric_subdivisions, CTX.quadric_subdivisions); glPopMatrix(); glDisable(GL_LIGHTING); }