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=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.182.34.130 with SMTP id z2mr6813835obi.3.1407061648455; Sun, 03 Aug 2014 03:27:28 -0700 (PDT) X-Received: by 10.140.19.213 with SMTP id 79mr212054qgh.5.1407061648430; Sun, 03 Aug 2014 03:27:28 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!feeder.erje.net!eu.feeder.erje.net!news.glorb.com!h18no13041862igc.0!news-out.google.com!b3ni5434qac.1!nntp.google.com!v10no4067841qac.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 3 Aug 2014 03:27:28 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=76.20.243.45; posting-account=0e_2YQoAAACiyvAQE9nydlmk8joBaY1J NNTP-Posting-Host: 76.20.243.45 References: <64ff459f-98c0-4fab-bcdd-d9fafe3311e6@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: is getting OpenGL to work with Ada a lost cause? From: jsquirek@gmail.com Injection-Date: Sun, 03 Aug 2014 10:27:28 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:21419 Date: 2014-08-03T03:27:28-07:00 List-Id: Yes, I was referring to the fact that although bindings are easy to come ac= ross, finding a project that links to the proper dlls in Windows can be dif= ficult if you are not familiar with how Windows works. Especially since the= Glut and SDL libraries will have to be the right bit size and generally do= wnloaded and linked to separately. e.g. This is not straight forward. project My_Project is --... Switch_Linker :=3D( External("WinDir") & "\System32\opengl32.dll", ".\SDL32.dll" -- Must be downloaded from https://www.libsdl.org/downloa= d-2.0.php package Linker is for Default_Switches("Ada") use Switch_Linker; end Linker; end My_Project;