How can i download openGl for C#?
i need openGL.....
Phsika
2010-06-17 19:33:08
What you need is a OpenGL Binding, since OpenGL is usually provided as a C library. This answer is exactly what you need.There's no OpenGL for C# more than just bindings.
Matias Valdenegro
2010-06-17 19:42:00
+1
A:
The Tao project provides full OpenGL bindings (including extensions) for .NET (including C#).
Reed Copsey
2010-06-17 19:33:38
A:
There is also ArcBall: http://www.codeproject.com/KB/openGL/arcball.aspx
There are also two parts to what you are looking for: Arccball provides .NET bindings for OpenGL and will be used for the coding/implementation. At runtime, the calls to the OpenGL runtime are handled by opengl32.dll found in c:\windows\system32
One caveat is that you'll need a version match between opengl32.dll and whatever.NET library you use.
Babak Naffas
2010-06-17 21:20:30