From: mfranz Date: Sat, 10 Jun 2006 15:25:48 +0000 (+0000) Subject: the special line width doesn't make much sense, as it's only applied to the X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dee302354f372d3357c49f5769581e4146a5d313;p=flightgear.git the special line width doesn't make much sense, as it's only applied to the arrow head marks. It was probably thought for all lines, but as those are wide enough, I just comment that out for now. --- diff --git a/src/Cockpit/hud.cxx b/src/Cockpit/hud.cxx index 4f5157289..5962b075e 100644 --- a/src/Cockpit/hud.cxx +++ b/src/Cockpit/hud.cxx @@ -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);