Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | 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 | 2 | -4/+3 |
| | |||||
* | 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 |
| | |||||
* | 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 | 1 | -5/+19 |
| | |||||
* | 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 | 3 | -9/+49 |
| | |||||
* | Make refcount declarations uniform. | Tavian Barnes | 2011-12-15 | 11 | -30/+26 |
| | |||||
* | Re-think colors. | Tavian Barnes | 2011-12-14 | 24 | -824/+613 |
| | | | | | | | | | 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 | 4 | -3/+3 |
| | |||||
* | Use correct D65 values for dmnsn_color_intensity(). | Tavian Barnes | 2011-12-03 | 1 | -2/+1 |
| | |||||
* | 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 | 3 | -44/+61 |
| | | | | 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 |
| | |||||
* | Add a non-cached case to the PR-tree benchmark. | Tavian Barnes | 2011-11-17 | 1 | -0/+5 |
| | |||||
* | Add some branch instrumentation from gcov profile. | Tavian Barnes | 2011-11-16 | 3 | -6/+7 |
| | |||||
* | Add a dmnsn_unreachable() macro. | Tavian Barnes | 2011-11-16 | 7 | -14/+30 |
| | | | | Also rename inline.h to compiler.h. | ||||
* | Get rid of DMNSN_ARRAY_FOREACH_REVERSE. | Tavian Barnes | 2011-11-13 | 1 | -11/+0 |
| | |||||
* | Get rid of dmnsn_color_is_black(). | Tavian Barnes | 2011-11-07 | 2 | -22/+15 |
| | |||||
* | Prevent hangs in dmnsn_polynomial_solve. | Tavian Barnes | 2011-11-04 | 1 | -13/+21 |
| | |||||
* | Simplify loop condition in PR-tree traversal. | Tavian Barnes | 2011-11-03 | 1 | -6/+4 |
| | | | | | Doing this used to actually generate *worse* code, but now it looks like it generates much better code. | ||||
* | Clean up PR-tree intersection code. | Tavian Barnes | 2011-11-02 | 1 | -24/+23 |
| | |||||
* | Use Rouillier and Zimmerman's version of the Uspensky algorithm. | Tavian Barnes | 2011-10-31 | 3 | -191/+153 |
| | |||||
* | Make PNG and GL share the same optimizer. | Tavian Barnes | 2011-10-30 | 6 | -74/+103 |
| | |||||
* | Make API more consistent. | Tavian Barnes | 2011-10-30 | 39 | -159/+184 |
| | | | | Object methods should be dmnsn_<object>_<fn>(). | ||||
* | Rename progress objects to future objects. | Tavian Barnes | 2011-10-19 | 16 | -264/+261 |
| | |||||
* | Add a getrusage() implementation of dmnsn_get_times(). | Tavian Barnes | 2011-09-30 | 1 | -13/+37 |
| | |||||
* | Correct pattern documentation. | Tavian Barnes | 2011-09-23 | 1 | -1/+1 |
| | |||||
* | Make dmnsn_color_mul() scale dmnsn_color::trans too. | Tavian Barnes | 2011-09-19 | 1 | -2/+7 |
| | |||||
* | Add ImageMaps to Python module. | Tavian Barnes | 2011-09-18 | 2 | -1/+23 |
| |