I want to migrate MFC project to C# wpf project. but OpenGL doesn't support on C#. so i used OpenTK. but in openTK, there is no GLU Tesselation Function like gluTessCallback, gluTessBeginPolygon, gluTessBeginCoutour ... etc. i want to know about using this function in my Environment.
Asked
Active
Viewed 27 times
-1
-
You can use p/Invoke or C++/cli to call existing C or C++ code. This can be effective if migrating an existing application, since you may be able to leave complicated stuff that rarely change in C/C++, while rewriting the UI or stuff that change frequently in C#. – JonasH Aug 11 '23 at 07:48