GLU tesselator callbacks

How can I pass member functions as GLU tesselator callbacks?

Make it static. You cannot pass a non-sttaic member function as a callback, simply because a member function is not the same as a “regular” function.

Ok, thanks