]> git.mxchange.org Git - flightgear.git/commitdiff
the special line width doesn't make much sense, as it's only applied to the
authormfranz <mfranz>
Sat, 10 Jun 2006 15:25:48 +0000 (15:25 +0000)
committermfranz <mfranz>
Sat, 10 Jun 2006 15:25:48 +0000 (15:25 +0000)
arrow head marks. It was probably thought for all lines, but as those are
wide enough, I just comment that out for now.

src/Cockpit/hud.cxx

index 4f51572896fb2f6f8888d90d46799c0ab8f6715a..5962b075e6fb5d0030c90c9afaa202f5a2d62b23 100644 (file)
@@ -960,9 +960,9 @@ void drawHUD()
         glEnable(GL_LINE_SMOOTH);
         glAlphaFunc(GL_GREATER, HUD->alphaClamp());
         glHint(GL_LINE_SMOOTH_HINT, GL_DONT_CARE);
-        glLineWidth(1.5);
+        //glLineWidth(1.5);
     } else {
-        glLineWidth(1.0);
+        //glLineWidth(1.0);
     }
 
     HUD->setColor();
@@ -1034,7 +1034,7 @@ void drawHUD()
     if (HUD->isAntialiased()) {
         glDisable(GL_ALPHA_TEST);
         glDisable(GL_LINE_SMOOTH);
-        glLineWidth(1.0);
+        //glLineWidth(1.0);
     }
 
     glEnable(GL_DEPTH_TEST);