Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
397 views

OpenGL view on C# Form

How to display a glut window inside Windows Form? glutCreateWindow("Example") create another form, glutCreateSubWindow(hwnd, 0, 0, 100, 100), where hwnd is handle to my main Window Form in C#, i ...
1
vote
2answers
918 views

Visual Studio 2008 with Vista, GLUT projects gives error on runtime

I'm sure that there is nothing wrong with my project. Because I have tried it on my ex computer with visual studio 2005 and windows xp pro, and it works error-free. I can compile my project. There is ...
1
vote
2answers
803 views

Why does Valgrind not like my usage of glutCreateWindow?

I'm using the following code... 169: const char *title = Title.c_str(); 170: glutCreateWindow(title); ... Valgrind gives me the following ... ==28841== Conditional jump or move depends on ...