Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Make dmnsn_new_prtree() handle empty scenes. | Tavian Barnes | 2010-05-05 | 1 | -0/+6 | |
| | ||||||
* | Fix prtree benchmark. | Tavian Barnes | 2010-05-05 | 1 | -95/+24 | |
| | ||||||
* | Replace BVSTs with priority R-trees. | Tavian Barnes | 2010-05-05 | 10 | -517/+636 | |
| | ||||||
* | Optimize cube intersection function a bit. | Tavian Barnes | 2010-05-04 | 1 | -59/+82 | |
| | ||||||
* | Add dmnsn_{min,max}() inlines. | Tavian Barnes | 2010-05-04 | 1 | -0/+14 | |
| | ||||||
* | Don't apply the transformations which create an object to its textures. | Tavian Barnes | 2010-05-03 | 1 | -0/+13 | |
| | | | | For example, sphere { 0, 2 } would scale the texture by a factor of 2. | |||||
* | Don't apply object modifiers to a NULL CSG object. | Tavian Barnes | 2010-05-03 | 1 | -1/+2 | |
| | ||||||
* | Don't report success when autogen.sh fails. | Tavian Barnes | 2010-05-03 | 1 | -4/+4 | |
| | ||||||
* | Remove debugging code from dmnsn_list_sort(). | Tavian Barnes | 2010-05-03 | 1 | -8/+2 | |
| | ||||||
* | Fix list sorting. | Tavian Barnes | 2010-05-01 | 2 | -9/+25 | |
| | ||||||
* | Implement list sorting. | Tavian Barnes | 2010-04-30 | 2 | -18/+109 | |
| | ||||||
* | Use dmnsn_assert() for array and list range checks. | Tavian Barnes | 2010-04-30 | 4 | -38/+19 | |
| | ||||||
* | Add a generic list type. | Tavian Barnes | 2010-04-30 | 6 | -2/+246 | |
| | ||||||
* | Typo in comment. | Tavian Barnes | 2010-04-27 | 1 | -1/+1 | |
| | ||||||
* | Fix some includes. | Tavian Barnes | 2010-04-27 | 23 | -3/+24 | |
| | ||||||
* | Fix some spurious includes. | Tavian Barnes | 2010-04-27 | 2 | -4/+3 | |
| | ||||||
* | Give backtraces for diagnostics from macros and include files. | Tavian Barnes | 2010-04-18 | 9 | -27/+66 | |
| | | | | | Partly this means that dmnsn_diagnostic() can't be called anywhere except during parsing, because the dmnsn_parse_location::parent pointers dangle. | |||||
* | Plug memory leak in object parsing failure path. | Tavian Barnes | 2010-04-18 | 1 | -42/+45 | |
| | ||||||
* | Have dmnsn_diagnostic() take a dmnsn_parse_location. | Tavian Barnes | 2010-04-18 | 12 | -156/+103 | |
| | ||||||
* | Support objects in object{} blocks. | Tavian Barnes | 2010-04-18 | 1 | -0/+22 | |
| | ||||||
* | Support all object identifier types. | Tavian Barnes | 2010-04-18 | 1 | -1/+6 | |
| | ||||||
* | Fix segfault on parse error within macro. | Tavian Barnes | 2010-04-18 | 1 | -1/+2 | |
| | | | | | The macro token buffer was being freed by both yylex_cleanup() and dmnsn_delete_patricia_trie(). | |||||
* | Rename dmnsn_matrix_*_mul() to dmnsn_transform_*(). | Tavian Barnes | 2010-04-17 | 14 | -68/+68 | |
| | ||||||
* | Don't render transparent shadows with transparency off. | Tavian Barnes | 2010-04-17 | 1 | -1/+2 | |
| | ||||||
* | Validate command line arguments. | Tavian Barnes | 2010-04-17 | 1 | -8/+8 | |
| | ||||||
* | Warn on division by zero, instead of crashing. | Tavian Barnes | 2010-04-17 | 1 | -6/+36 | |
| | ||||||
* | New --resilience command-line argument. | Tavian Barnes | 2010-04-16 | 1 | -19/+30 | |
| | ||||||
* | Document --quality. | Tavian Barnes | 2010-04-16 | 1 | -1/+2 | |
| | ||||||
* | Implement image_{width,height}. | Tavian Barnes | 2010-04-16 | 8 | -7/+19 | |
| | ||||||
* | Initial support for image_maps. | Tavian Barnes | 2010-04-15 | 7 | -7/+71 | |
| | ||||||
* | Fix canvas_pigments with negative coordinates. | Tavian Barnes | 2010-04-15 | 1 | -7/+4 | |
| | ||||||
* | Support transforming pigments and textures in dimension. | Tavian Barnes | 2010-04-15 | 8 | -30/+97 | |
| | ||||||
* | Support planes in dimension. | Tavian Barnes | 2010-04-15 | 9 | -2/+59 | |
| | ||||||
* | Add plane object. | Tavian Barnes | 2010-04-15 | 4 | -0/+93 | |
| | ||||||
* | Support infinitely large bounding boxes. | Tavian Barnes | 2010-04-15 | 2 | -10/+17 | |
| | ||||||
* | Add transformations to textures and pigments. | Tavian Barnes | 2010-04-15 | 9 | -131/+149 | |
| | | | | | Also, object intersection callbacks are now responsible for handling their own transformations. | |||||
* | New canvas pigment (image map). | Tavian Barnes | 2010-04-13 | 3 | -0/+61 | |
| | ||||||
* | Remove a bunch of errno.h includes. | Tavian Barnes | 2010-04-13 | 19 | -19/+0 | |
| | ||||||
* | Fix low-quality renders. | Tavian Barnes | 2010-04-11 | 1 | -0/+2 | |
| | ||||||
* | Get rid of some duplication in csg.c, and fix missed add of dmnsn_epsilon. | Tavian Barnes | 2010-04-11 | 1 | -163/+23 | |
| | ||||||
* | Add --quality option. | Tavian Barnes | 2010-04-11 | 1 | -1/+20 | |
| | ||||||
* | Print usage information in dimension. | Tavian Barnes | 2010-04-11 | 2 | -18/+47 | |
| | ||||||
* | Improve CSG and light handling. | Tavian Barnes | 2010-04-10 | 7 | -139/+296 | |
| | | | | | | - Lights can be inside CSG objects - Lights can be modified by transformations - CSG objects can contain only one object | |||||
* | Forgot to lex 'translate' and 'scale'. | Tavian Barnes | 2010-04-10 | 1 | -0/+2 | |
| | ||||||
* | Don't use dynamic memory for dmnsn_intersection's. | Tavian Barnes | 2010-04-07 | 9 | -242/+231 | |
| | | | | Drops us from ~400,000 allocs to ~1000. Oops ><. | |||||
* | Calculate CSG bounding boxes more accurately. | Tavian Barnes | 2010-04-07 | 1 | -9/+3 | |
| | ||||||
* | New dmnsn_malloc() function, and friends. | Tavian Barnes | 2010-04-07 | 41 | -959/+438 | |
| | | | | | | 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. | |||||
* | Implement CSG in front-end. | Tavian Barnes | 2010-04-07 | 9 | -81/+340 | |
| | ||||||
* | Implement CSG differences in libdimension. | Tavian Barnes | 2010-04-06 | 2 | -2/+140 | |
| | ||||||
* | Re-cast rays properly in intersections and merges. | Tavian Barnes | 2010-04-06 | 1 | -9/+38 | |
| |