glu access

Started by
1 comment, last by Ahkron 20 years, 1 month ago
Is there anything out there similair to GLee except for glu* instructions? If not, is there any other easy way to link glu3D* functions in Windows without the full-on manual approach? Thanks in advance, Me.
Advertisement
dunno what you mean by "full on manual approach" but its pretty
easy to link GLU to a project, especially in VC++
//put this in any old file you like, usually the file where//your WinMain/main function is#pragma comment(lib, "glu32.lib")//include the header when you need it.....#include <gl/glu.h>//do your stuff!gluPerspective(...);[source]
"I am a donut! Ask not how many tris/batch, but rather how many batches/frame!" -- Matthias Wloka & Richard Huddy, (GDC, DirectX 9 Performance)

http://www.silvermace.com/ -- My personal website
I''m meaning for glu functions for OpenGL1.2 upwards, such as gluBuild3DMipmaps which aren''t directly available under Windows.

This topic is closed to new replies.

Advertisement