Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wrappers in C#

Status
Not open for further replies.

scorpionguy

Programmer
May 15, 2006
1
CA
I am relatively new to C# and I want to implement openGL in C#. I came to know about a wrapper called CsGL and many others. But can anybody explain me what is a wrapper and how can I use it in order to work with openGL.
 
I will give you my "laymans" definition if it helps:

A wrapper is a class or library which is used to access another library or class by being the middle-man or interpreter (however you want to look at it).

In this case, OpenGL is a library which has a very diverse and complicated group of API calls which, if you wrote in your own program, would be very long and hard to debug.

A wrapper in this case is basically a library of .NET objects you can use in your own program which will do all the hard API work for you. Since these libraries have been worked out and debugged by the authors, you can supposedly just assume they work when you need them to (although we all know different ;) )



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top