summaryrefslogtreecommitdiff
path: root/src/glu/sgi
AgeCommit message (Collapse)Author
2010-02-15glu/sgi: Add assert to check for null pointer dereference.Vinson Lee
2010-02-14glu/sgi: Move initialization of members to top of Curve constructor.Vinson Lee
This is a modification of commit 53d448657bd300ab68b2869b2fba76a627699baf. The members cpts and spts are possibly used as arguments later in the constructor.
2010-02-14glu/sgi: Initialize members of class Curvelist.Vinson Lee
2010-02-14glu/sgi: Initialize members of class Curve.Vinson Lee
2010-02-14glu/sgi: Initialize member of class Pool.Vinson Lee
2010-02-13glu/sgi: Initialize members of class Curvelist.Vinson Lee
2010-02-12glu/sgi: Initialize member of class primStream.Vinson Lee
2010-02-12glu/sgi: Initialize members of class Arc.Vinson Lee
2010-02-12glu/sgi: Initialize member of class Bin.Vinson Lee
2010-02-10glu/sgi: Initialize member of class Uarray.Vinson Lee
2010-01-28glu/sgi: Remove unnecessary headers.Vinson Lee
2010-01-10glu/sgi: Initialize members of class Mesher.Vinson Lee
2010-01-10glu/sgi: Initialize members of class Slicer.Vinson Lee
2010-01-10glu/sgi: Include missing header file.Vinson Lee
2010-01-10glu/sgi: Initialize members of class Renderhints.Vinson Lee
2010-01-09glu/sgi: Initialize members of class StoredVertex.Vinson Lee
2010-01-09glu/sgi: Include missing header file.Vinson Lee
2010-01-09glu/sgi: Initialize member of class O_pwlcurve.Vinson Lee
2010-01-02glu/sgi: Initialize members of struct O_curve.Vinson Lee
2010-01-02glu/sgi: Initialize members of struct O_surface.Vinson Lee
2010-01-02glu/sgi: Initialize member of struct O_trim.Vinson Lee
2010-01-01glu/sgi: Initialize member of struct Property.Vinson Lee
2010-01-01glu/sgi: Initialize member of struct Dlnode.Vinson Lee
2010-01-01glu/sgi: Initialize members of struct O_nurbscurve.Vinson Lee
2010-01-01glu/sgi: Initialize members of class Knotvector.Vinson Lee
2010-01-01glu/sgi: Initialize member of struct Property.Vinson Lee
2009-12-29glu/sgi: Initialize members of struct O_nurbssurface.Vinson Lee
2009-12-29glu/sgi: Silence warn_unused_result warnings.Vinson Lee
2009-12-29glu/sgi: Initialize member of struct GridVertex.Vinson Lee
2009-12-29glu/sgi: Initialize member variables in class Varray.Vinson Lee
2009-12-29glu/sgi: Initialize member of class monoChain.Vinson Lee
2009-12-29glu/sgi: Initialize members of class sampledLine.Vinson Lee
2009-12-29glu/sgi: Initialize members of class directedLine.Vinson Lee
2009-12-25glu/sgi: Fix include recursion.Vinson Lee
arcsorter.h should not include itself.
2009-12-23glu/sgi: Initialize variable in directedLine.Vinson Lee
2009-12-23glu/sgi: Silence compiler warnings.Vinson Lee
2009-12-22glu/sgi: Silence uninitialized variable warnings.Vinson Lee
2009-12-04glu/sgi: Fix memory leak in gluBuild2DMipmapLevelsCore.Vinson Lee
(cherry picked from commit 808f0376607b0e2d31dfebc888fd8f1e737fed09)
2009-12-04glu/sgi: Fix memory leak in gluBuild1DMipmapLevelsCore.Vinson Lee
(cherry picked from commit 94bcb9f1a43f2ab3bdff09156e3ab5b1c115cbd8)
2009-12-04glu/sgi: Fix memory leak in gluBuild2DMipmapLevelsCore.Vinson Lee
(cherry picked from commit 0d89f3dc7ff3f89ba8d5d664253730485bca35e2)
2009-12-04glu/sgi: Fix memory leak in gluBuild3DMipmapLevelsCore.Vinson Lee
(cherry picked from commit f895abbd9777c4985aa40cf660c68f6d7333f0ec)
2009-12-04glu/sgi: Fix memory leak in gluBuild3DMipmapLevelsCore.Vinson Lee
(cherry picked from commit 326b66d724754ca97012501db1c7c62d7d41a457)
2009-12-04glu/sgi: Fix memory leak in bitmapBuild2DMipmaps.Vinson Lee
(cherry picked from commit 5b925b7daa566d799c4f50911a7fcca114131503)
2009-12-04glu/sgi: Fix memory leak in gluScaleImage3D.Vinson Lee
(cherry picked from commit b611f639b4bffdcca376293f7ce71af9f6bdbff3)
2009-12-04glu/sgi: Fix memory leak in gluScaleImage.Vinson Lee
(cherry picked from commit a9c540f5dedbf593f8038fdbc95eecb60826ab26)
2009-12-04glu: Fix memory leak in __gl_meshMakeEdge.Vinson Lee
(cherry picked from commit d3b4c99c703f70a9d0e715a97e52672f7f8fc980)
2009-05-01Fix symbol list for mangled Mesa on Darwin.Tom Fogal
When building mangled Mesa on Darwin, the exported symbols are named `_mgluWhatever' instead of simply `_gluWhatever'. When using a list of exported symbols via the system ld's `-exported_symbols_list' command line option (as done by mklib), this resulted in error messages about exporting symbols which do not exist. Fortunately the file format accepts simple wildcards. This throws a wildcard so that the symbol list will match both the mangled and non-mangled names, preventing the warning and actually exporting the correct symbols in one shot.
2009-01-06Merge commit 'origin/master' into gallium-0.2Brian Paul
Conflicts: src/mesa/drivers/dri/common/dri_util.c
2009-01-05glu: Add mangled symbols to export listTom Fogal
This adds all of the `mglu' symbols to the list of symbol exports for GLU. Without this patch, mangled GLU symbols are considered `internal' symbols, and calling any results in undefined references.
2008-11-28Merge commit 'origin/master' into gallium-0.2Alan Hourihane