summaryrefslogtreecommitdiffstats
path: root/libdimension/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Add teapots WIP.teapotTavian Barnes2011-12-211-0/+1
|
* Re-think colors.Tavian Barnes2011-12-141-2/+0
| | | | | | | | | Color is a property of light, and thus doesn't include information about transparency. But canvas pixels and object pigments represent a color and a degree of transparency. The new type dmnsn_tcolor/ TColor encapsulates that information. Also, fix the transparent shadow implementation.
* Rename raytrace.{c,h} to ray_trace.{c,h}.Tavian Barnes2011-12-051-2/+2
|
* Add a dmnsn_unreachable() macro.Tavian Barnes2011-11-161-2/+2
| | | | Also rename inline.h to compiler.h.
* Make PNG and GL share the same optimizer.Tavian Barnes2011-10-301-0/+2
|
* Make API more consistent.Tavian Barnes2011-10-301-0/+1
| | | | Object methods should be dmnsn_<object>_<fn>().
* Rename progress objects to future objects.Tavian Barnes2011-10-191-3/+3
|
* Update configure.ac to autoconf 2.68.Tavian Barnes2011-08-261-2/+4
|
* Use the AX_PTHREAD macro to detect pthread flags properly.Tavian Barnes2011-08-261-3/+4
|
* Rename dimension-impl.h to dimension-internal.hTavian Barnes2011-08-251-1/+1
|
* Replace sky_spheres with a single background pigment.Tavian Barnes2011-08-211-2/+0
|
* Fix doc cleanup.Tavian Barnes2011-08-031-3/+3
|
* Add leopard pigment.Tavian Barnes2011-07-281-0/+1
|
* Remove color_maps.Tavian Barnes2011-07-281-1/+0
|
* Implement triangles.Tavian Barnes2011-07-131-1/+2
|
* Vast libdimension API and internals improvements.Tavian Barnes2011-06-131-3/+2
| | | | | Couldn't really do these while I was trying to be POV-Ray compatible, 'cause they would've broken compatibility.
* Don't allocate reference counts on the heap.Tavian Barnes2011-05-281-1/+0
|
* Consolidate reference counting code.Tavian Barnes2011-05-161-0/+2
|
* Fix subdirectory order.Tavian Barnes2011-05-151-1/+2
|
* Group tests and benchmarks with the corresponding source code.Tavian Barnes2011-05-151-2/+10
|
* Use arrays for PR-tree construction instead of lists.Tavian Barnes2011-05-101-2/+0
|
* Update email address.Tavian Barnes2011-03-081-1/+1
|
* Fix license years.Tavian Barnes2011-02-171-1/+1
|
* Add dmnsn_[un]likely() macros and a profiling framework.Tavian Barnes2011-01-291-0/+6
|
* Make PATRICIA tries available as a generic dictionary API.Tavian Barnes2011-01-291-0/+2
|
* Remove --enable-pgo configure option.Tavian Barnes2011-01-291-20/+0
|
* Split pigments and finishes into their own headers/sources.Tavian Barnes2010-12-021-0/+4
|
* Use -lpthread instead of -pthread.Tavian Barnes2010-12-011-3/+3
|
* Make libtool work correctly on Windows (MinGW).Tavian Barnes2010-11-301-1/+1
|
* Implement pigment maps.Tavian Barnes2010-11-231-0/+1
|
* Generisise map implementation.Tavian Barnes2010-11-221-0/+2
|
* Implement sky spheres.Tavian Barnes2010-11-191-0/+2
|
* Document libdimension with Doxygen.Tavian Barnes2010-11-141-2/+12
|
* Revert "Add support for jemalloc."Tavian Barnes2010-11-121-4/+0
| | | | | This reverts commit bac926b1e54696beee1d84834876cfadd9939132. Just use LD_PRELOAD if you want it.
* Standard compliance.Tavian Barnes2010-11-101-1/+1
| | | | Apparently ssize_t isn't a standard type...
* Add gradient pattern.Tavian Barnes2010-11-081-0/+1
|
* Add pattern framework, impelement checker pattern.Tavian Barnes2010-11-061-0/+5
|
* Add torii to libdimension.Tavian Barnes2010-10-261-1/+2
|
* Add numerical polynomial solver based on Uspensky's algorithm.Tavian Barnes2010-10-261-0/+1
|
* Make parts of the progress API internal.Tavian Barnes2010-09-291-1/+1
|
* Add a timer API to libdimension.Tavian Barnes2010-09-261-2/+4
|
* Add support for jemalloc.Tavian Barnes2010-09-261-0/+4
|
* Add cylinders to libdimension.Tavian Barnes2010-08-141-0/+1
|
* Rename dimension_impl.h to dimension-impl.h.Tavian Barnes2010-07-141-1/+1
|
* Don't expose the contents of struct dmnsn_progress.Tavian Barnes2010-07-141-0/+1
|
* Use sched_getaffinity() rather than sysconf(_SC_NPROCESSORS_ONLN).Tavian Barnes2010-06-281-2/+4
| | | | Also, abstract cpu counting into dedicated dmnsn_ncpus() function.
* Add a pkg-config file to libdimension.Tavian Barnes2010-05-131-0/+3
|
* Don't attempt to use profile data for profiling build.Tavian Barnes2010-05-131-1/+1
|
* Fix some copyright dates.Tavian Barnes2010-05-101-1/+1
|
* New dmnsn_new_thread() function.Tavian Barnes2010-05-091-6/+9
| | | | | | | Two advantages: first, waiters are guaranteed to wake if a dmnsn_error() cancels a thread. Second, the thread library is fully abstracted over by threads.{c,h} and progress.{c,h} now, though raytrace.c is still using pthread_create() directly.