Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a bug in cubic polynomial solver, and add more tests. | Tavian Barnes | 2014-02-03 | 2 | -35/+163 |
| | |||||
* | Use strerror_r if available instead of sys_errlist. | Tavian Barnes | 2014-02-03 | 9 | -16/+43 |
| | |||||
* | Use set -e in autogen.sh. | Tavian Barnes | 2014-02-01 | 1 | -5/+7 |
| | |||||
* | prtree: Sort large workloads in parallel. | Tavian Barnes | 2014-02-01 | 3 | -10/+55 |
| | | | | Performance benefit is around 33% for more than 1000 objects. | ||||
* | prtree: Optimize dmnsn_new_prtree() by avoiding some allocation. | Tavian Barnes | 2013-09-05 | 1 | -97/+115 |
| | | | | Around 11% faster. | ||||
* | bvh: Store the intersection cache right in the BVH struct. | Tavian Barnes | 2013-09-03 | 1 | -56/+15 |
| | | | | This saves a lot of complexity and a little bit of time. | ||||
* | Don't normalize normal vectors unnecessarily. | Tavian Barnes | 2013-06-09 | 2 | -6/+4 |
| | |||||
* | Fix a race in the future benchmark. | Tavian Barnes | 2013-03-22 | 1 | -1/+5 |
| | |||||
* | Also benchmark cycles/increment for futures. | Tavian Barnes | 2013-03-20 | 1 | -3/+14 |
| | |||||
* | Don't use pointer indirection to emulate mutable for futures. | Tavian Barnes | 2013-03-19 | 2 | -38/+37 |
| | | | | We can just cast away the const, as they're all on the heap anyway. | ||||
* | Simplify future implementation. | Tavian Barnes | 2013-03-19 | 2 | -31/+28 |
| | | | | | A read-write lock was a bad idea, as most consumers are probably writers, not readers. | ||||
* | Add a benchmark for dmnsn_future. | Tavian Barnes | 2013-03-19 | 2 | -1/+71 |
| | |||||
* | Fix the polynomial solver when the bounds are exact. | Tavian Barnes | 2012-12-21 | 2 | -1/+31 |
| | |||||
* | Add some basic reference counting tests. | Tavian Barnes | 2012-12-19 | 2 | -0/+76 |
| | |||||
* | Add more dictionary tests. | Tavian Barnes | 2012-12-19 | 1 | -5/+44 |
| | |||||
* | Add some unit tests for dictionaries. | Tavian Barnes | 2012-12-19 | 3 | -1/+98 |
| | |||||
* | Add tcolor.h to the distributed headers. | Tavian Barnes | 2012-12-18 | 1 | -0/+1 |
| | |||||
* | Don't print a memory leak message on failed tests. | Tavian Barnes | 2012-12-18 | 1 | -1/+8 |
| | |||||
* | Improve the unit test macro API a bit. | Tavian Barnes | 2012-12-18 | 3 | -38/+105 |
| | |||||
* | Convert the polynomial tests to the new testing framework. | Tavian Barnes | 2012-12-18 | 4 | -35/+164 |
| | |||||
* | Use the unit-testing framework "Check" | Tavian Barnes | 2012-12-17 | 1 | -1/+5 |
| | |||||
* | client: Respond to ^C right away if possible. | Tavian Barnes | 2012-12-17 | 3 | -8/+27 |
| | |||||
* | Allow other BVH implementations to be used. | Tavian Barnes | 2012-12-17 | 10 | -472/+600 |
| | | | | | dmnsn_bvh is now a generic API, which could potentially support octrees, etc, in addition to PR-trees. | ||||
* | Replace INCLUDES with AM_CFLAGS. | Tavian Barnes | 2012-12-16 | 3 | -7/+4 |
| | |||||
* | Make dmnsn_clear actually clear. | Tavian Barnes | 2012-08-21 | 1 | -1/+1 |
| | |||||
* | Fix --disable-png build. | Tavian Barnes | 2012-08-20 | 1 | -2/+2 |
| | |||||
* | Update .gitignore for new automake. | Tavian Barnes | 2012-06-05 | 1 | -0/+2 |
| | |||||
* | Fix compilation with new versions of Cython. | Tavian Barnes | 2012-06-05 | 1 | -1/+1 |
| | |||||
* | Add debugging tests for NaN values. | Tavian Barnes | 2012-02-06 | 5 | -0/+55 |
| | |||||
* | Add custom fatal error handler test. | Tavian Barnes | 2012-01-01 | 2 | -0/+41 |
| | |||||
* | Print a backtrace on both warnings and errors. | Tavian Barnes | 2012-01-01 | 2 | -7/+12 |
| | |||||
* | Print errno in dmnsn_report_error(). | Tavian Barnes | 2011-12-26 | 2 | -5/+32 |
| | |||||
* | Use macros to initialize refcounts. | Tavian Barnes | 2011-12-24 | 13 | -34/+43 |
| | |||||
* | Add dmnsn_tcolor printf macros. | Tavian Barnes | 2011-12-17 | 1 | -0/+5 |
| | |||||
* | Make triangles smooth. | Tavian Barnes | 2011-12-17 | 5 | -13/+68 |
| | |||||
* | Allow one-element CSG operations. | Tavian Barnes | 2011-12-17 | 1 | -8/+8 |
| | |||||
* | Use inheritance for spheres in cube test. | Tavian Barnes | 2011-12-16 | 1 | -19/+23 |
| | |||||
* | Make refcount declarations uniform. | Tavian Barnes | 2011-12-15 | 11 | -30/+26 |
| | |||||
* | Re-think colors. | Tavian Barnes | 2011-12-14 | 28 | -887/+716 |
| | | | | | | | | | 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. | ||||
* | Fix reading of 8-bit PNG files. | Tavian Barnes | 2011-12-06 | 1 | -7/+7 |
| | |||||
* | Rename raytrace.{c,h} to ray_trace.{c,h}. | Tavian Barnes | 2011-12-05 | 5 | -4/+4 |
| | |||||
* | Hide the presence of dimension.wrapper from wrapper types. | Tavian Barnes | 2011-12-05 | 4 | -7/+9 |
| | |||||
* | Rename complex test to cube test. | Tavian Barnes | 2011-12-04 | 2 | -3/+3 |
| | |||||
* | Use a separate class for sRGB colors. | Tavian Barnes | 2011-12-04 | 6 | -81/+114 |
| | |||||
* | Use correct D65 values for dmnsn_color_intensity(). | Tavian Barnes | 2011-12-03 | 1 | -2/+1 |
| | |||||
* | Add .intensity() and .gray() methods to Colors. | Tavian Barnes | 2011-12-01 | 1 | -0/+5 |
| | |||||
* | Evaluate specular highlights before reflection. | Tavian Barnes | 2011-12-01 | 1 | -9/+11 |
| | |||||
* | Be more consistent about using sRGB in the client. | Tavian Barnes | 2011-11-28 | 6 | -56/+77 |
| | | | | Also, expose the sRGB C and C^-1 functions. | ||||
* | Fix up malloc.h documentation. | Tavian Barnes | 2011-11-19 | 1 | -1/+1 |
| | |||||
* | Get rid of dmnsn_vector_element(). | Tavian Barnes | 2011-11-17 | 1 | -33/+0 |
| |