Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a high-performance graphic library for .NET and Mono. I have taken a look at Tao framework and, while it is very complete, it's quite lacking in terms of usability. It should be cross-platform compatible.

What other alternatives worked for you?

share|improve this question
Looks like the Tao framework is offline these days. – Drew Noakes Jun 24 '10 at 13:08

3 Answers

up vote 4 down vote accepted

OpenGL would be my choice, .NET bindings exist from many open source wrappers, with OpenGL you're set for cross platform.

share|improve this answer

There is a more modern OpenGL wrapper for .NET/Mono called OpenTK.

share|improve this answer

I agree with mhutch - OpenTK is a very good .NET/Mono wrapper for OpenGL. For one, it has its own vector/matrix math library that, among other things, contains some of the more useful GLUT functions (I used to miss) like CreatePerspectiveFieldOfView and LookAt. I've found this library especially useful now that the matrix stack is no longer "kosher". Finally, it comes with a nice sample project so you can study how to use the wrapper without extensive documentation study.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.