From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.5 required=5.0 tests=BAYES_00,TO_NO_BRKTS_PCNT, XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b4d4b01123d9b3bf,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-03 12:00:03 PST Path: archiver1.google.com!news2.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-out1.nntp.be!propagator2-sterling!In.nntp.be!news.codefab.com!att541!att542!ip.att.net!newsfeed3.global.lmco.com!svlnews.lmms.lmco.com!not-for-mail From: "Alfredo Macias" Newsgroups: comp.lang.ada Subject: OpenGL and Ada Date: Fri, 3 Oct 2003 11:59:10 -0700 Organization: Lockheed Martin Corporation Message-ID: NNTP-Posting-Host: 134.116.5.79 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Xref: archiver1.google.com comp.lang.ada:165 Date: 2003-10-03T11:59:10-07:00 List-Id: Hi, Has anyone seen a problem with openGL (with ada) running on Linx where a line between 2 points is drawn 60% with the intended color and 40% of it white? This is the code Im running, and don't set any colors between the drawing of the line, how could the line be drawn with two different colors, and when the line moves, the intruder color changes to yellow or magenta. This is weired and is driven me nuts. Gl.Glbegin(Mode); for I in 1..2 loop Gl.Glvertex2d (Gl.Gldouble(Data.Item(I).Coord1), Gl.Gldouble(Data.Item(I).Coord2)); end loop; Gl.Glend; No one I know has seen this kind of behavior. Have you? Any hints will be appreciated.