Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Coding style fixes. | Tavian Barnes | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | object: Get rid of void *ptr field. | Tavian Barnes | 2014-05-26 | 1 | -4/+14 |
| | | | | | | Instead, allow dmnsn_object to be embedded in a larger struct. This gives a consistent 1% speed boost. | ||||
* | geometry: Add a matrix constructor from column vectors. | Tavian Barnes | 2014-05-22 | 1 | -0/+11 |
| | |||||
* | geometry.h: Fix copy-pasta. | Tavian Barnes | 2014-05-22 | 1 | -2/+2 |
| | |||||
* | malloc: New DMNSN_MALLOC() macro to save a sizeof(). | Tavian Barnes | 2014-05-06 | 1 | -1/+9 |
| | |||||
* | gl: Make drawing faster by using a better pixel format. | Tavian Barnes | 2014-04-27 | 1 | -0/+11 |
| | |||||
* | canvas: Avoid copying entire dmnsn_canvas_optimizer structs. | Tavian Barnes | 2014-04-26 | 1 | -12/+8 |
| | |||||
* | future: Add a dmnsn_future_is_done() function. | Tavian Barnes | 2014-04-26 | 1 | -0/+7 |
| | |||||
* | future: Add a race-free way to examine a partial computation. | Tavian Barnes | 2014-04-23 | 1 | -1/+14 |
| | | | | | | This allows safe OpenGL previews, for example. dmnsn_future* learned the dmnsn_future_{pause,resume}() functions which cause all worker threads to block. render.test now survives Helgrind with no errors. | ||||
* | compiler.h: Fix extra semicolon in macro. | Tavian Barnes | 2014-04-23 | 1 | -2/+2 |
| | |||||
* | Don't check for NULL in DMNSN_INCREF(). | Tavian Barnes | 2014-04-10 | 1 | -8/+1 |
| | |||||
* | Fix comment on dmnsn_sRGB_inverse_gamma(). | Tavian Barnes | 2014-04-10 | 1 | -3/+3 |
| | |||||
* | Add some unit tests for dictionaries. | Tavian Barnes | 2012-12-19 | 1 | -1/+1 |
| | |||||
* | Make dmnsn_clear actually clear. | Tavian Barnes | 2012-08-21 | 1 | -1/+1 |
| | |||||
* | Add debugging tests for NaN values. | Tavian Barnes | 2012-02-06 | 4 | -0/+54 |
| | |||||
* | Print a backtrace on both warnings and errors. | Tavian Barnes | 2012-01-01 | 1 | -2/+2 |
| | |||||
* | Use macros to initialize refcounts. | Tavian Barnes | 2011-12-24 | 1 | -3/+3 |
| | |||||
* | Add dmnsn_tcolor printf macros. | Tavian Barnes | 2011-12-17 | 1 | -0/+5 |
| | |||||
* | Make triangles smooth. | Tavian Barnes | 2011-12-17 | 1 | -4/+18 |
| | |||||
* | Make refcount declarations uniform. | Tavian Barnes | 2011-12-15 | 10 | -29/+24 |
| | |||||
* | Re-think colors. | Tavian Barnes | 2011-12-14 | 7 | -97/+249 |
| | | | | | | | | | 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 Barnes | 2011-12-05 | 1 | -0/+0 |
| | |||||
* | Be more consistent about using sRGB in the client. | Tavian Barnes | 2011-11-28 | 1 | -2/+7 |
| | | | | 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 dmnsn_unreachable() macro. | Tavian Barnes | 2011-11-16 | 2 | -7/+24 |
| | | | | 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 | 1 | -10/+0 |
| | |||||
* | Use Rouillier and Zimmerman's version of the Uspensky algorithm. | Tavian Barnes | 2011-10-31 | 1 | -4/+9 |
| | |||||
* | Make API more consistent. | Tavian Barnes | 2011-10-30 | 10 | -30/+21 |
| | | | | Object methods should be dmnsn_<object>_<fn>(). | ||||
* | Rename progress objects to future objects. | Tavian Barnes | 2011-10-19 | 3 | -22/+22 |
| | |||||
* | Correct pattern documentation. | Tavian Barnes | 2011-09-23 | 1 | -1/+1 |
| | |||||
* | Round correctly when converting colors to integers. | Tavian Barnes | 2011-09-18 | 1 | -0/+12 |
| | |||||
* | Transform normals as pseudovectors, not vectors. | Tavian Barnes | 2011-09-14 | 2 | -29/+39 |
| | | | | | | | | Also clarify the vector transformation API. Instead of dmnsn_transform_vector(), we have: - dmnsn_transform_point() - dmnsn_transform_direction() - dmnsn_transform_normal() | ||||
* | Use dmnsn_object::intrinsic_trans from Python. | Tavian Barnes | 2011-09-12 | 1 | -1/+1 |
| | |||||
* | Add dmnsn_color printf macros. | Tavian Barnes | 2011-09-12 | 1 | -3/+9 |
| | |||||
* | Update copyright years. | Tavian Barnes | 2011-08-31 | 20 | -20/+20 |
| | |||||
* | Replace sky_spheres with a single background pigment. | Tavian Barnes | 2011-08-21 | 2 | -63/+1 |
| | |||||
* | Don't dynamically allocate timers. | Tavian Barnes | 2011-08-21 | 2 | -15/+7 |
| | |||||
* | Support thread cancelation, and handle ^C in the client. | Tavian Barnes | 2011-08-19 | 1 | -0/+6 |
| | |||||
* | Handle reflection of light and transmitted rays. | Tavian Barnes | 2011-08-18 | 2 | -3/+5 |
| | |||||
* | Rename "translucency" to "transparency". | Tavian Barnes | 2011-08-12 | 2 | -3/+3 |
| | | | | Perhaps I should look up terms before I use them. | ||||
* | Support rendering image subregions. | Tavian Barnes | 2011-07-29 | 1 | -0/+6 |
| | | | | This is the first step to supporting distributed renders. | ||||
* | Add leopard pigment. | Tavian Barnes | 2011-07-28 | 1 | -0/+6 |
| | |||||
* | Make the checker pattern a singleton. | Tavian Barnes | 2011-07-28 | 2 | -13/+8 |
| | |||||
* | Remove color_maps. | Tavian Barnes | 2011-07-28 | 2 | -21/+13 |
| | |||||
* | Support multiple texture assignment properly. | Tavian Barnes | 2011-07-26 | 1 | -8/+13 |
| | |||||
* | Implement triangles. | Tavian Barnes | 2011-07-13 | 1 | -0/+10 |
| | |||||
* | Fix up some Doxygen documentation. | Tavian Barnes | 2011-06-17 | 4 | -4/+8 |
| | |||||
* | Add .pigment and .finish properties to Textures. | Tavian Barnes | 2011-06-15 | 1 | -0/+6 |
| |