summaryrefslogtreecommitdiffstats
path: root/libdimension/dimension/canvas.h
Commit message (Collapse)AuthorAgeFilesLines
* Modularize the libdimension codebase.Tavian Barnes2015-10-251-98/+16
|
* canvas: Kill optimizers' ->ptr field.Tavian Barnes2014-06-191-10/+15
|
* Add a C89 compliance test for the headers.Tavian Barnes2014-06-121-9/+9
| | | | | Technically we still require a couple things from C99 like "bool", but it works with -std=c89 under gcc.
* Add a C99 conformance test for the headers.Tavian Barnes2014-06-121-9/+9
|
* canvas: Use pool.Tavian Barnes2014-05-301-11/+4
|
* gl: Make drawing faster by using a better pixel format.Tavian Barnes2014-04-271-0/+11
|
* canvas: Avoid copying entire dmnsn_canvas_optimizer structs.Tavian Barnes2014-04-261-12/+8
|
* Make refcount declarations uniform.Tavian Barnes2011-12-151-1/+1
|
* Re-think colors.Tavian Barnes2011-12-141-9/+9
| | | | | | | | | 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 Barnes2011-10-301-5/+5
| | | | Object methods should be dmnsn_<object>_<fn>().
* Update copyright years.Tavian Barnes2011-08-311-1/+1
|
* Don't allocate reference counts on the heap.Tavian Barnes2011-05-281-1/+1
|
* Add a refcount to canvases.Tavian Barnes2011-05-201-0/+2
|
* Get rid of include guards on sub-headers.Tavian Barnes2011-05-161-5/+0
|
* Update email address.Tavian Barnes2011-03-081-1/+1
|
* End sentences with periods.Tavian Barnes2010-11-151-6/+6
|
* Document libdimension with Doxygen.Tavian Barnes2010-11-141-18/+61
|
* Fix some copyright dates.Tavian Barnes2010-05-101-1/+1
|
* Use C99 for loop initializers.Tavian Barnes2010-05-051-5/+7
|
* New dmnsn_clear_canvas() function.Tavian Barnes2010-03-241-0/+1
| | | | Makes valgrind happier about the GL test.
* Fix up license blurbs and copyright year.Tavian Barnes2010-01-271-1/+1
|
* Don't check if it's too late to add canvas optimizers.Tavian Barnes2009-10-261-3/+2
| | | | This fixes some errors displayed by concurrency checkers like helgrind and drd.
* Add destructor callbacks for polymorphic C types, and use their baseTavian Barnes2009-07-161-2/+4
| | | | dmnsn_delete_*() function.
* Update license copyrights to 2009.Tavian Barnes2009-07-081-1/+1
|
* Comments and style adjustments, and a couple fixes.Tavian Barnes2009-07-081-0/+1
|
* Make optimizer registration fail if a canvas has already been writtenTavian Barnes2009-07-051-5/+6
| | | | to.
* New interface for optimizing canvas conversions by registeringTavian Barnes2009-07-041-12/+24
| | | | dmnsn_set_pixel() callbacks.
* Inline some functions: about a 5% performance boost.Tavian Barnes2009-07-011-6/+19
|
* Wrote more documentation.Tavian Barnes2009-06-271-0/+1
|
* Remove thread-synchronicity from canvases.Tavian Barnes2009-06-261-13/+3
|
* Add lots of comments, and some code fixes discovered in the process.Tavian Barnes2009-06-261-3/+4
|
* Add some comments.Tavian Barnes2009-04-121-4/+4
|
* Change argument order of dmnsn_set_pixel; write C++ canvas wrapper.Tavian Barnes2009-04-121-2/+2
|
* Clarify licenses; add libdimensionxx library.Tavian Barnes2009-04-101-8/+8
|
* Add read-write mutexes to canvas pixels. New error infrastructure.Tavian Barnes2009-04-081-0/+18
|
* Revamp color handling.Tavian Barnes2009-03-201-10/+1
|
* Use CIE xyY internally, rather than CIE XYZ.Tavian Barnes2009-03-011-2/+2
|
* Initial commit.Tavian Barnes2009-03-011-0/+50