Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Modularize the libdimension codebase. | Tavian Barnes | 2015-10-25 | 1 | -92/+0 |
| | |||||
* | canvas: Kill optimizers' ->ptr field. | Tavian Barnes | 2014-06-19 | 1 | -25/+12 |
| | |||||
* | Use // comments when possible. | Tavian Barnes | 2014-06-07 | 1 | -8/+8 |
| | |||||
* | canvas: Use the pool for the pixels too. | Tavian Barnes | 2014-06-02 | 1 | -6/+3 |
| | |||||
* | array: Add DMNSN_NEW_ARRAY macro. | Tavian Barnes | 2014-05-31 | 1 | -1/+1 |
| | |||||
* | canvas: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -18/+16 |
| | |||||
* | malloc: New DMNSN_MALLOC() macro to save a sizeof(). | Tavian Barnes | 2014-05-06 | 1 | -2/+2 |
| | |||||
* | canvas.c: Fix whitespace. | Tavian Barnes | 2014-05-01 | 1 | -1/+1 |
| | |||||
* | gl: Make drawing faster by using a better pixel format. | Tavian Barnes | 2014-04-27 | 1 | -0/+14 |
| | |||||
* | canvas: Avoid copying entire dmnsn_canvas_optimizer structs. | Tavian Barnes | 2014-04-26 | 1 | -3/+4 |
| | |||||
* | Add debugging tests for NaN values. | Tavian Barnes | 2012-02-06 | 1 | -0/+1 |
| | |||||
* | Use macros to initialize refcounts. | Tavian Barnes | 2011-12-24 | 1 | -3/+1 |
| | |||||
* | Re-think colors. | Tavian Barnes | 2011-12-14 | 1 | -6/+6 |
| | | | | | | | | | 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. | ||||
* | Make API more consistent. | Tavian Barnes | 2011-10-30 | 1 | -6/+6 |
| | | | | Object methods should be dmnsn_<object>_<fn>(). | ||||
* | Update copyright years. | Tavian Barnes | 2011-08-31 | 1 | -1/+1 |
| | |||||
* | Vast libdimension API and internals improvements. | Tavian Barnes | 2011-06-13 | 1 | -2/+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 Barnes | 2011-05-28 | 1 | -3/+1 |
| | |||||
* | Add a refcount to canvases. | Tavian Barnes | 2011-05-20 | 1 | -10/+7 |
| | |||||
* | Don't use awkward (*fptr)() syntax. | Tavian Barnes | 2011-04-03 | 1 | -2/+2 |
| | |||||
* | Update email address. | Tavian Barnes | 2011-03-08 | 1 | -1/+1 |
| | |||||
* | Document libdimension with Doxygen. | Tavian Barnes | 2010-11-14 | 1 | -7/+15 |
| | |||||
* | Add dmnsn_free() to match dmnsn_malloc(). | Tavian Barnes | 2010-09-26 | 1 | -3/+3 |
| | |||||
* | Don't expose the contents of struct dmnsn_progress. | Tavian Barnes | 2010-07-14 | 1 | -1/+0 |
| | |||||
* | Fix some copyright dates. | Tavian Barnes | 2010-05-10 | 1 | -1/+1 |
| | |||||
* | Write some more docs, and fix a couple things noticed while writing them. | Tavian Barnes | 2010-05-10 | 1 | -1/+1 |
| | |||||
* | New DMNSN_ARRAY_FOREACH() macro, faster than iterating with dmnsn_array_get(). | Tavian Barnes | 2010-05-08 | 1 | -10/+5 |
| | |||||
* | Use C99 for loop initializers. | Tavian Barnes | 2010-05-05 | 1 | -12/+7 |
| | |||||
* | Remove a bunch of errno.h includes. | Tavian Barnes | 2010-04-13 | 1 | -1/+0 |
| | |||||
* | New dmnsn_malloc() function, and friends. | Tavian Barnes | 2010-04-07 | 1 | -18/+9 |
| | | | | | | I'm tired of checking for malloc failures everywhere, considering it never happens. So just bail out whenever it does. A lot of stuff is guaranteed to succeed if it returns now. | ||||
* | Set errno on failures. | Tavian Barnes | 2010-04-01 | 1 | -0/+4 |
| | |||||
* | New dmnsn_clear_canvas() function. | Tavian Barnes | 2010-03-24 | 1 | -0/+13 |
| | | | | Makes valgrind happier about the GL test. | ||||
* | Fix up license blurbs and copyright year. | Tavian Barnes | 2010-01-27 | 1 | -1/+1 |
| | |||||
* | Clean up some dmnsn_new_*() functions. | Tavian Barnes | 2009-10-26 | 1 | -4/+4 |
| | | | | | Rather than special-case every failed memory allocation, just make dmnsn_delete_*() more robust and call it. | ||||
* | Don't check if it's too late to add canvas optimizers. | Tavian Barnes | 2009-10-26 | 1 | -12/+2 |
| | | | | This fixes some errors displayed by concurrency checkers like helgrind and drd. | ||||
* | Add destructor callbacks for polymorphic C types, and use their base | Tavian Barnes | 2009-07-16 | 1 | -0/+1 |
| | | | | dmnsn_delete_*() function. | ||||
* | Update license copyrights to 2009. | Tavian Barnes | 2009-07-08 | 1 | -1/+1 |
| | |||||
* | Comments and style adjustments, and a couple fixes. | Tavian Barnes | 2009-07-08 | 1 | -2/+3 |
| | |||||
* | Make optimizer registration fail if a canvas has already been written | Tavian Barnes | 2009-07-05 | 1 | -2/+11 |
| | | | | to. | ||||
* | New interface for optimizing canvas conversions by registering | Tavian Barnes | 2009-07-04 | 1 | -0/+39 |
| | | | | dmnsn_set_pixel() callbacks. | ||||
* | Inline some functions: about a 5% performance boost. | Tavian Barnes | 2009-07-01 | 1 | -22/+0 |
| | |||||
* | Remove thread-synchronicity from canvases. | Tavian Barnes | 2009-06-26 | 1 | -100/+10 |
| | |||||
* | Add lots of comments, and some code fixes discovered in the process. | Tavian Barnes | 2009-06-26 | 1 | -6/+3 |
| | |||||
* | Add some comments. | Tavian Barnes | 2009-04-12 | 1 | -3/+29 |
| | |||||
* | Change argument order of dmnsn_set_pixel; write C++ canvas wrapper. | Tavian Barnes | 2009-04-12 | 1 | -2/+2 |
| | |||||
* | Clarify licenses; add libdimensionxx library. | Tavian Barnes | 2009-04-10 | 1 | -8/+8 |
| | |||||
* | Add read-write mutexes to canvas pixels. New error infrastructure. | Tavian Barnes | 2009-04-08 | 1 | -6/+100 |
| | |||||
* | Revamp color handling. | Tavian Barnes | 2009-03-20 | 1 | -164/+2 |
| | |||||
* | Use CIE xyY internally, rather than CIE XYZ. | Tavian Barnes | 2009-03-01 | 1 | -23/+34 |
| | |||||
* | Initial commit. | Tavian Barnes | 2009-03-01 | 1 | -0/+203 |