-2

How can i download openGl for C#?

Penguen
  • 16,836
  • 42
  • 130
  • 205

3 Answers3

1

you might give this library a try: SharpGL.

Grz, Kris.

Kris van der Mast
  • 16,343
  • 8
  • 39
  • 61
  • 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. – Dr. Snoopy Jun 17 '10 at 19:42
1

The Tao project provides full OpenGL bindings (including extensions) for .NET (including C#).

Reed Copsey
  • 554,122
  • 78
  • 1,158
  • 1,373
0

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
  • 12,395
  • 3
  • 34
  • 49