-
openGL with GLX
for some reason, my company use openGL with GLX on linux and with WGL under windows.
I can't find any tutorial on how to code openGL with GLX, everything I can found is GL+ GLUT,
I wonder if anybody knows where I can found a GL+GLX tutorial.
Thanks!!
-
Super Moderator
OpenGL Guru
Re: openGL with GLX
Your company does that because that's exactly the right thing to do, those are the equivalent interface APIs provided on those platforms. The only alternative is to abstract that away beneath a library someone else wrote to hide the platform specific details and that can have disadvantages.
Read this:
http://www.plunk.org/opengl/intro_paper.pdf
You should probably get this book:
"OpenGL: Programming For The X Window System"
by Mark J. Kilgard
ISBN: 0201483599
It's a bit dated now but it will give you what you need. The most significant omission will probably be glXGetProcAddress, but you know about that now that I've told you :-).
-
Advanced Member
Frequent Contributor
Re: openGL with GLX
glx sample at the middle of the page
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules