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,de2e74db98b9c8d2,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-01 12:00:05 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: Solid Lines between 2 points changing changing colors Date: Wed, 1 Oct 2003 11:51:19 -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:77 Date: 2003-10-01T11:51:19-07:00 List-Id: Hi. I have a problem and would appreciate any hints that would help me solve it. I'm running my ada program on Linux 9. something. This is the code I'm running: 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; I only have two 2d points, so this code draws a thick line on the screen between point1 and point2. However, about 60 % of the line is of the right color, the rest of the line is some times white and some times yellow. This never occured when I was running the exact same code on AIX, only on LINUX. Is there a default setting that I could have set on my OpenGL installation on LInux that I don't have on AIX? As far as I can see, the two installations have the same default settings. Any Hints? Thank you very much