Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove libGLU | Matt Turner | 2012-08-31 | 203 | -57767/+0 |
| | | | | | | | It's been moved to its own repository, found at http://cgit.freedesktop.org/mesa/glu/ Acked-by: Kenneth Graunke <[email protected]> | ||||
* | build: Remove GLU_DIRS | Matt Turner | 2012-08-24 | 1 | -1/+1 |
| | |||||
* | glu: fix two Clang warnings | Lukas Rössler | 2012-05-21 | 2 | -2/+2 |
| | | | | | | | | | | | | | This patch removes two Clang warnings in GLU: The first one seems to be an actual bug in mapdesc.cc: Clang complains that sizeof(dest) will return the size of REAL*[MAXCOORDS], instead of the intended REAL[MAXCOORDS][MAXCOORDS]. The second one is just cosmetic because Clang doesn't like extra parentheses. NOTE: This is a candidate for the 8.0 branch Reviewed-by: Brian Paul <[email protected]> | ||||
* | scons: Add Haiku build support | Alexander von Gluck IV | 2012-01-17 | 1 | -5/+11 |
| | | | | Enables building stock Mesa under the Haiku operating system. | ||||
* | glu: remove BeOS define as BeOS is not longer a target platform | Alexander von Gluck | 2011-12-27 | 1 | -6/+1 |
| | | | | | Reviewed-by: Brian Paul <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | glu: Fix deprecated conversion from string constant to ‘char*’ warning. | José Fonseca | 2011-11-09 | 2 | -2/+2 |
| | |||||
* | glu: Avoid defining conflicting DEBUG NDEBUG macros. | José Fonseca | 2011-08-30 | 1 | -1/+0 |
| | |||||
* | glu: Fix build on mingw-w64. | José Fonseca | 2011-08-30 | 1 | -0/+6 |
| | |||||
* | Remove dead Makefiles. | José Fonseca | 2011-08-30 | 1 | -149/+0 |
| | |||||
* | Remote *.mgw stuff. | José Fonseca | 2011-08-30 | 1 | -230/+0 |
| | | | | Totally broken, and deprecated by scons. | ||||
* | sgi: Fix MSVC build. | José Fonseca | 2011-04-27 | 2 | -1/+5 |
| | | | | | | | | | | | | Including windows.h was ineffective on MSVC because we define the NOGDI macro, which skips the wingdi.h include. Unsetting NOGDI is also a bad idea because it causes all sort of symbol clashes with SGI code. The real problem is that WINGDAPI was not being defined, also due to NOGDI, so simply define it to blank if not done already. This seems to make everybody happy. | ||||
* | glu: Fix linux build | Jakob Bornecrantz | 2011-04-23 | 1 | -1/+1 |
| | |||||
* | glu: Clone the enviroment | Jakob Bornecrantz | 2011-04-23 | 1 | -0/+2 |
| | |||||
* | scons: Build glu. | José Fonseca | 2011-04-23 | 3 | -2/+142 |
| | |||||
* | mesa: fix mesa version string construction | Brian Paul | 2010-10-19 | 1 | -1/+1 |
| | | | | | Now that MESA_MINOR=10, we no longer need the extra '0' in the version string. | ||||
* | glu/sgi: Remove dead initialization in extract565rev. | Vinson Lee | 2010-07-16 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Remove dead initialization in extract565. | Vinson Lee | 2010-07-15 | 1 | -1/+1 |
| | |||||
* | glu: Fix some compiler warnings in libtess | Neil Roberts | 2010-06-30 | 8 | -13/+37 |
| | | | | | | | | | | | | | | | | | | | | | | | | | When compiled with the more aggressive compiler warnings such as -Wshadow and -Wempty-body the libtess code gives a lot more warnings. This fixes the following issues: * The 'Swap' macro tries to combine multiple statements into one and then consume the trailing semicolon by using if(1){/*...*/}else. This gives warnings because the else part ends up with an empty statement. It also seems a bit dangerous because if the semicolon were missed then it would still be valid syntax but it would just ignore the following statement. This patch replaces it with the more common idiom do { /*...*/ } while(0). * 'free' was being used as a local variable name but this shadows the global function. This has been renamed to 'free_handle' * TRUE and FALSE were being unconditionally defined. Although this isn't currently a problem it seems better to guard them with #ifndef because it's quite common for them to be defined in other headers. https://bugs.freedesktop.org/show_bug.cgi?id=28845 Signed-off-by: Brian Paul <[email protected]> | ||||
* | Grammar and spelling fixes | Jeff Smith | 2010-03-12 | 2 | -2/+2 |
| | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | Remove unused mini and mesa glu subdirectories | Kristian Høgsberg | 2010-02-25 | 34 | -13732/+0 |
| | |||||
* | Revert "glu/sgi: Set freed pointer to NULL." | Vinson Lee | 2010-02-25 | 1 | -1/+0 |
| | | | | | | | This commit breaks flightgear fgfs. A null pointer is dereferenced in the function MakeVertex. This reverts commit 9be414f4b93c763e1aee8f634a13721ae5d95fcd. | ||||
* | glu/sgi: Set freed pointer to NULL. | Vinson Lee | 2010-02-25 | 1 | -0/+1 |
| | |||||
* | glu/sgi: Add assert to check for null pointer dereference. | Vinson Lee | 2010-02-15 | 1 | -0/+1 |
| | |||||
* | glu/sgi: Move initialization of members to top of Curve constructor. | Vinson Lee | 2010-02-14 | 1 | -8/+6 |
| | | | | | | | This is a modification of commit 53d448657bd300ab68b2869b2fba76a627699baf. The members cpts and spts are possibly used as arguments later in the constructor. | ||||
* | glu/sgi: Initialize members of class Curvelist. | Vinson Lee | 2010-02-14 | 1 | -4/+5 |
| | |||||
* | glu/sgi: Initialize members of class Curve. | Vinson Lee | 2010-02-14 | 1 | -0/+8 |
| | |||||
* | glu/sgi: Initialize member of class Pool. | Vinson Lee | 2010-02-14 | 1 | -0/+3 |
| | |||||
* | src/glu/mesa: fix mem leak (bug 26559) | Brian Paul | 2010-02-14 | 1 | -1/+6 |
| | |||||
* | src/glu/mini: fix mem leak (bug 26559) | Brian Paul | 2010-02-14 | 1 | -1/+5 |
| | |||||
* | glu/sgi: Initialize members of class Curvelist. | Vinson Lee | 2010-02-13 | 1 | -0/+2 |
| | |||||
* | glu/sgi: Initialize member of class primStream. | Vinson Lee | 2010-02-12 | 1 | -0/+2 |
| | |||||
* | glu/sgi: Initialize members of class Arc. | Vinson Lee | 2010-02-12 | 1 | -0/+6 |
| | |||||
* | glu/sgi: Initialize member of class Bin. | Vinson Lee | 2010-02-12 | 1 | -0/+1 |
| | |||||
* | glu/sgi: Initialize member of class Uarray. | Vinson Lee | 2010-02-10 | 1 | -0/+1 |
| | |||||
* | glu/sgi: Remove unnecessary headers. | Vinson Lee | 2010-01-28 | 11 | -13/+0 |
| | |||||
* | glu/sgi: Initialize members of class Mesher. | Vinson Lee | 2010-01-10 | 1 | -0/+3 |
| | |||||
* | glu/sgi: Initialize members of class Slicer. | Vinson Lee | 2010-01-10 | 1 | -0/+4 |
| | |||||
* | glu/sgi: Include missing header file. | Vinson Lee | 2010-01-10 | 1 | -0/+2 |
| | |||||
* | glu/sgi: Initialize members of class Renderhints. | Vinson Lee | 2010-01-10 | 1 | -0/+4 |
| | |||||
* | glu/sgi: Initialize members of class StoredVertex. | Vinson Lee | 2010-01-09 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Include missing header file. | Vinson Lee | 2010-01-09 | 1 | -0/+1 |
| | |||||
* | glu/sgi: Initialize member of class O_pwlcurve. | Vinson Lee | 2010-01-09 | 1 | -0/+2 |
| | |||||
* | glu/sgi: Initialize members of struct O_curve. | Vinson Lee | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Initialize members of struct O_surface. | Vinson Lee | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Initialize member of struct O_trim. | Vinson Lee | 2010-01-02 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Initialize member of struct Property. | Vinson Lee | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Initialize member of struct Dlnode. | Vinson Lee | 2010-01-01 | 1 | -0/+1 |
| | |||||
* | glu/sgi: Initialize members of struct O_nurbscurve. | Vinson Lee | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | glu/sgi: Initialize members of class Knotvector. | Vinson Lee | 2010-01-01 | 1 | -0/+3 |
| | |||||
* | glu/sgi: Initialize member of struct Property. | Vinson Lee | 2010-01-01 | 1 | -1/+1 |
| |