C# - glu32 DLL rferece?

Started by
2 comments, last by Foxito Foxeh 7 years, 11 months ago

Hi, I'm trying to use both OpenGL32.DLL and GLU32.DLL libraries in C# WinForms (Or WPF using Windows Form Host Integration). What i can't find is the glu32.dll reference. I found opengl32.dll reference in MSDN reference, but I want to use some of glu32 functions.

Is there any site that has the glut reference that uses Windows?

Advertisement

All I've managed to find from Googling is:

[DLLImport "Glu32.dll"]

The GLU reference does indeed appear to be missing from MSDN, but each GLU function does still have a reference on opengl.org (e.g https://www.opengl.org/sdk/docs/man2/xhtml/gluBuild2DMipmaps.xml) so you can Google them individually if required.

Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls.

Thanks to both, I found what I needed in MINGW include headers.

In GL/ there is GLU prototype header. I used it and I've been working fine with it.

This topic is closed to new replies.

Advertisement