Top "Glut" questions

The [Open]GL Utility Toolkit (GLUT) is a utility library for OpenGL applications to put the platform-dependent details (e.g. creating windows and responding to mouse events and key presses) under one hood, in an easy and portable way.

GLUT on OS X with OpenGL 3.2 Core Profile

Is it possible to use GLUT on OS X Lion or OS X Mountain Lion using core profile (so I …

macos opengl glsl glut osx-mountain-lion
OpenGL/glut/stdc++ build errors

I'm using Ubuntu and tried using synaptic to install everything that had the word "GLUT" in it and also SDL …

c++ opengl linker-errors glut
Rendering fire in OpenGL

I want to render a fire effect in OpenGL based on a particle simulation. I have hundreds of particles which …

c++ opengl graphics glut particles
glutPassiveMotionFunc and glutWarpMousePointer

I want to implement my own cursor in an OpenGL / GLUT window. The usual way to do this is to …

macos opengl mouse glut
Center an OpenGL window with GLUT

I have an openGL window that is 640x480 that I need to center in the middle of the screen. I …

c++ opengl glut
How can I change the position of the mouse cursor in OpenGL/Glut?

I'm writing a simple game and I'm going to have the mouse control the camera (using GlutPassiveMotionFunc). I'm going to …

opengl mouse glut
How to pass a class method as an argument for another function in C++ and openGL?

I know this thing works: void myDisplay() { ... } int main() { ... glutDisplayFunc(myDisplay) ... } so I tried to include myDisplay() function to a …

c++ opengl methods glut
is it possible to create a fixed size glut window?

is it possible to create a fixed size window using glut, so any changes with the window's dimensions will be …

opengl glut
Opengl obj object loader with textures

I am using an object loader to load an obj model that I exported from blender. I can load the …

c++ opengl glut blender texture-mapping
How to move around camera using mouse in OpenGL?

I realize this question has been asked before on stackoverflow, but I have yet to find an answer that I …

c++ opengl camera glut freeglut