summaryrefslogtreecommitdiff
path: root/src/glut
AgeCommit message (Collapse)AuthorFilesLines
2008-07-06Set library and header installation directories from configurationDan Nicholson5-22/+24
Currently the installation directories for libraries and headers are resolved within the install commands. For instance, the libraries will be installed to $(INSTALL_DIR)/$(LIB_DIR). This limits the flexibility of the installation, such as when the libraries should be installed to a subdirectory like /usr/lib/tls. This adds the make variables $(INSTALL_LIB_DIR) and $(INSTALL_INC_DIR) to define the locations that the libraries and headers are installed. For the static configs, this resolves exactly as before to $(INSTALL_DIR)/include and $(INSTALL_DIR)/$(LIB_DIR). For autoconf, they are derived directly from the --libdir and --includedir settings.
2008-06-07Fix CRLF line endings.Jose Fonseca8-4675/+4675
2008-06-07Fix CRLF line endings.Jose Fonseca8-4675/+4675
2008-05-26Remove CVS keywords.José Fonseca4-4/+1
2008-05-06Always cleanup the makedepend backup filesDan Nicholson4-4/+4
Consistently cleanup the depend.bak files created by makedepend. Also, realclean has been changed to use a single find command, which speeds it up considerably.
2008-04-09Add $(X11_INCLUDES) to shut makedepend up.Hasso Tepper1-1/+1
2008-02-28Convert crlf->lf line endings.José Fonseca35-20080/+20080
Windows/DOS users should enable core.autocrlf from now on: git config --global core.autocrlf true
2008-02-28Convert crlf->lf line endings.José Fonseca35-20080/+20080
Windows/DOS users should enable core.autocrlf from now on.
2008-02-25Obsolete, replaced by glut_fcb.c (fortran callbacks)Brian1-164/+0
2008-02-25Remove files of unsupported build systems.José Fonseca4-604/+0
2008-02-08[glut-directfb] Fixed displaying of single buffered window.Claudio Ciccani2-3/+22
2008-02-08[glut-directfb] When converting microseconds to milliseconds, round to the ↵Claudio Ciccani1-1/+1
next integer.
2008-01-23Assorted patches for miniglx/linux-solo (Gavin Li <codeview@gmail.com>)Brian2-0/+28
2007-10-29Rename 'mms-config.' to 'mms.config'.Michal Krol1-1/+1
It looks like Windows does not like filenames ending with a dot, in effect renaming it to 'mms-config'.
2007-09-28add support for LDFLAGS env varDan Nicholson6-6/+7
2007-09-13Fix timer problem when using Fortran bindings (submitted by Bill Mitchell)Brian1-1/+5
Also, add some comments about what's going on.
2007-09-13added null ptr checkBrian1-1/+1
2007-09-12Add glut_fcb.c to the build and update to fix warnings (see bug 12405)Brian2-25/+26
2007-09-12Rename. "fcb" = fortran call backBrian1-0/+164
2007-09-12pkg-config supportDan Nicholson2-1/+22
2007-09-12DESTDIR support.Dan Nicholson2-8/+8
2007-08-07Gutsy oopses on touch of existing file. Workaround.Keith Whitwell6-0/+6
2007-08-01fix mem leak (bug 11791)Brian1-0/+1
2007-07-31fix some FreeBSD issuesBrian1-1/+1
2007-07-27more Mingw32 fixesZhang1-24/+17
2007-07-21Fix a number of MINGW32 issuesZhang4-2/+206
2007-07-01Compute the amount of time to sleep on idle event using timers as reference.Claudio Ciccani3-25/+55
2007-06-28a variety of fixes for MingWzhang4-6/+11
2007-05-08miniglx/glut: should use the x/y pos to create windowDave Airlie1-1/+1
This allows moving miniglx glut windows around the framebuffer
2007-04-24assorted fixes for Windows/VC8Karl Schultz1-0/+6
2007-02-16Commiting a few minor fixes to glut fbdev (segfault on a separate stack)Sean D'Epagnier2-2200/+16
Updated all drivers that used the old _ac_ functions to use the new _vbo_ functions. I know this fixed the fbdev driver, it looks like it might fix some other drivers too.
2006-12-21Updated keyboard input so that glut programs can read from stdin withoutSean D'Epagnier1-42/+44
problems if tty input is used. Also corrected a few stdin keycodes.
2006-12-01Remove DirectFBGL header from Mesa bacause since 1.0.0 DirectFB installs its ↵Claudio Ciccani2-1/+9
own header. Updated to the current DirectFBGL interface (i.e. added GetProcAddress()).
2006-11-30the following improvements to linux-fbdev:Sean D'Epagnier8-164/+248
1. updated makefiles to build libOSMesa as well as libGL these are improvements to fbdev-glut 1. mouse cursor will timeout and be invisible if not being used 2. do not restore colormaps to truecolor targets, this causes problems at exit on my g450 3. fixed a crash when cleaning up from failure by munmaping what had not yet been mmaped 4. Resize event handling is improved, the resize function is not invoked from a signal handler now. 5. The main loop can detect if it is running very fast (greater than 2khz) 6. keyboard up and special up events are generated from stdin input mode and if it is also not redrawing, it sleeps 7. corrections in escape sequences for function keys for stdin input
2006-11-21Added correct include files to files,Sean D'Epagnier10-9/+21
No longer modify cmap if the device is truecolor (messes up dual monitors with vt switching)
2006-10-19New bin/minstall script - a minimal replacement for 'install'.Brian Paul2-2/+2
Correctly handles symlinks so we can get rid of the COPY_LIBS stuff.
2006-09-27remove obsolete commentBrian Paul1-1/+0
2006-09-24corrected cursor drawingSean D'Epagnier5-82/+137
added handling of SIGWINCH fixed input of recieving SIGIO while handling SIGIO corrected input code for return uncommented normal calculation to models
2006-09-21GLUT_FORCE_VISUAL env var to force glut to use a particular visual (debug only)Brian Paul1-0/+17
2006-09-21new code to init DirectColor colormapsBrian Paul1-1/+22
2006-08-27The colormap code is now simpler, 15bpp works where it did not before.Sean D'Epagnier2-45/+32
The input is fixed so that delete reports '\b' and backspace 127 The vt switching works both right and left.
2006-08-23VT switching now uses correct keys.Sean D'Epagnier3-18/+58
exiting when virtual screen size is larger than regular size doesn't corrupt screen. colormap is reset when using stdin input on exit. return is not reported as ctrl-m but '\r' as it should be backspace keycode was incorrect and not working, fixed
2006-08-18The driver now compiles correctly without any x headers or libraries installedSean D'Epagnier7-24/+206
The bitmap and stroke code can't be shared with glx anymore because of this. The model for the mini teapot is restored and I have tested it to work with linux-fbdev and linux-solo The driver recognizes 32bpp where there is no alpha (my radeon 7500) It also sets the correct number of cmap entrees (instead of 256 which can be an error)
2006-08-10Added initial multisampling support to glfbdev driver.Sean D'Epagnier11-260/+722
Fully implemented glutGameMode, and added vidresize stubs to make Added support for glutReshapeDisplay to change video mode but not lose current mesa context. implementation glut 5 complient. Fixed many minor bugs Updated docs
2006-08-05Modularized code into multiple files.Sean D'Epagnier13-7084/+10060
Added gamemode stubs, iconify support, joystick stubs. Fixed color index mode, added 8 bit alpha blending, enabled cmaps even with 15, 16, 24, and 32 depths as some fbdev drivers need this. Fixed compiling with -ansi Using SIGIO for keyboard input, so that vt switching is enabled even if the program is locked. Fixed numerous small bugs.
2006-08-04Handle GLUT_DEVICE_KEY_REPEAT,GLUT_OWN_JOYSTICK,GLUT_JOYSTICK_POLL_RATE in ↵Claudio Ciccani1-2/+10
glutDeviceGet().
2006-08-04Moved glutDeviceGet() to events.c.Claudio Ciccani2-47/+86
Implemented glutIgnoreKeyRepeat() and glutSetKeyRepeat().
2006-07-31GLUT on fbdev driver. Sean D'EpagnierBrian Paul3-0/+9376
2006-07-30Clear window's event mask before enabling handled events.Claudio Ciccani1-0/+5
2006-07-13LIB_DIR is now just 'lib' or 'lib64'Brian Paul5-19/+19
Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.