aboutsummaryrefslogtreecommitdiffstats
path: root/src/glut
Commit message (Collapse)AuthorAgeFilesLines
* Committing in .Jouk Jansen2005-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 1) change compilation on VMS to use IEEE floating points 2) one more problem with _mesa_sprintf solved Modified Files: Mesa/docs/README.VMS Mesa/progs/demos/descrip.mms Mesa/progs/tests/descrip.mms Mesa/progs/util/descrip.mms Mesa/progs/xdemos/descrip.mms Mesa/src/glu/mesa/descrip.mms Mesa/src/glu/sgi/descrip.mms Mesa/src/glut/glx/descrip.mms Mesa/src/mesa/array_cache/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/glapi/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/main/texobj.c Mesa/src/mesa/math/descrip.mms Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/shader/grammar/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
* fix some strict aliasing problems related to choosing framebuffer configs ↵Brian Paul2005-09-023-17/+5
| | | | (Matthias Hopf)
* Quote $(CC) and $(CXX) so that 'CC=ccache gcc' and 'CXX=ccache g++' willIan Romanick2005-07-263-3/+3
| | | | work again.
* Added -linker option to mklib, used to specify a particular program forBrian Paul2005-07-253-7/+7
| | | | | linking, if relevant. Updated Makefiles to use -linker option instead of setting CC, CXX env vars.
* Fixed warnings by using GLUTProc type instead of anonymous (void *) forPhilippe Houdoin2005-07-181-120/+120
| | | | GLUT callbacks.
* moved to windows build dirKarl Schultz2005-05-241-338/+0
|
* assorted warning clean-ups for x86_64, etc (Mikko T.)Brian Paul2005-05-072-4/+4
|
* removed detritusDaniel Borca2005-02-141-155/+0
|
* separated DOS GLUT from GLX GLUT.Daniel Borca2005-02-1426-578/+16219
| | | | added a few FreeGLUT specific functions.
* Remove depend on make cleanKeith Whitwell2005-01-191-0/+1
|
* changed coding style. made `glutTimerFunc' less accurate, but far more ↵Daniel Borca2005-01-143-400/+356
| | | | reliable.
* changed coding style. added possibility to use default timer instead of ↵Daniel Borca2005-01-141-130/+146
| | | | PC/HW timer.
* changed coding style. added a NULL pointer check.Daniel Borca2005-01-141-27/+31
|
* changed coding styleDaniel Borca2005-01-1412-1022/+1049
|
* Put quotes around the CC and CXX variables passed to mklib. This makeIan Romanick2005-01-113-3/+3
| | | | them work with multi-work compiler names (e.g., "ccache gcc").
* updated makefiles for gcc 3.4.3 and bnu 2.15Daniel Borca2004-12-151-3/+3
|
* Improve the behaviour of the build system wrt depend files.Keith Whitwell2004-12-083-3/+3
| | | | | | | | - Remove the -Y option for makedepend, so that the standard directories are searched - No longer pipe the multiple errors that the -Y option caused into /dev/null -- we want to know about these failures. - Fix up a few other misc makedepend failures.
* sync with glut/glxDaniel Borca2004-12-061-2/+2
|
* don't need glut_fbc.cBrian Paul2004-11-271-1/+0
|
* clean up 'depend' commandsBrian Paul2004-11-271-2/+4
|
* typedef GLUTproc, return it from glutGetProcAddress()Brian Paul2004-11-271-120/+120
|
* updated from patch 1026109Brian Paul2004-09-101-3/+2
|
* new file (bug 1026109)Brian Paul2004-09-101-0/+52
|
* removed (bug 1026109)Brian Paul2004-09-101-2/+0
|
* Add glutGetProcAddress(). Not all GLUT version 5 APIs are supported yet, ↵Philippe Houdoin2004-08-163-40/+204
| | | | | | thought. -> #define GLUT_API_VERSION 4.5 ? ;-)
* Replaced the .cpp-ized (for build issue) common GLUT source files by theirPhilippe Houdoin2004-08-142-1874/+0
| | | | | standard .c version. Remove unused libglut.def.
* Replaced the .cpp-ized (for build issue) common GLUT source files by theirPhilippe Houdoin2004-08-1418-233/+2135
| | | | | standard .c version. Remove outdated Makefile.orig.
* Update to Jake Hamby's BeOS GLUT 3.7 port.Philippe Houdoin2004-08-1419-169/+1103
|
* Move to $(TOP)/configs/default-based makefile.Philippe Houdoin2004-08-141-113/+84
|
* Make sure mklib sees the definition of CC and CXX. Make mklib respectIan Romanick2004-06-252-2/+2
| | | | | | the definitions of CC and CXX on Linux. This fixed build issues with sunos5-gcc and build issues on GCC 2.x Linux when CC and CXX are set to a GCC 3.x compiler.
* Missed in last commit:Eric Anholt2004-06-011-1/+1
| | | | | | | Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKE variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1".
* obsolete in favor of regular MakefilesBrian Paul2004-05-121-78/+0
|
* obsoleteBrian Paul2004-04-221-119/+0
|
* use new MKDEP, MKDEP_OPTIONS variablesBrian Paul2004-04-071-1/+1
|
* New Makefile systemBrian Paul2004-03-262-0/+191
|
* re-order arguments to mklibBrian Paul2004-03-251-2/+2
|
* fix typo (Matt Case)Brian Paul2004-02-231-1/+1
|
* fixed some typosDaniel Borca2004-02-201-1/+1
|
* added glutGetProcAddress in DMesaGLUTDaniel Borca2004-02-021-2/+11
|
* glutTimerFunc cleanupDaniel Borca2004-01-264-121/+132
|
* implemented glutTimerFuncDaniel Borca2004-01-152-2/+66
|
* Assorted mklib tweaks.Brian Paul2003-12-151-1/+1
| | | | Added Intel icc support to mklib.
* Updates from Philippe Houdoin.Brian Paul2003-12-131-7/+30
|
* new makefilesBrian Paul2003-12-121-2/+2
|
* doc updates; GLUT timer additions; fixed compilation warningsDaniel Borca2003-11-182-42/+211
|
* s/GGIMesaContext/ggi_mesa_context_t/Brian Paul2003-11-071-1/+1
|
* GameModeDaniel Borca2003-10-131-0/+77
|
* fix error message (bug 816876)Brian Paul2003-10-031-1/+1
|
* improved 'clean' targets (Otto Solares)Brian Paul2003-10-031-3/+3
|
* updates from Daniel BorcaBrian Paul2003-10-021-2/+2
|