Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Add CSG merges to libdimension. | Tavian Barnes | 2010-04-06 | 2 | -1/+126 |
| | |||||
* | Add CSG intersections to libdimension. | Tavian Barnes | 2010-04-06 | 2 | -1/+126 |
| | |||||
* | Fix BVST benchmark. | Tavian Barnes | 2010-04-06 | 1 | -13/+13 |
| | |||||
* | Add CSG unions to libdimension. | Tavian Barnes | 2010-04-06 | 5 | -2/+191 |
| | |||||
* | New dmnsn_bounding_box type. | Tavian Barnes | 2010-04-06 | 8 | -110/+135 |
| | |||||
* | New dmnsn_vector_min() and _max() functions. | Tavian Barnes | 2010-04-06 | 2 | -7/+22 |
| | |||||
* | Make inside_fn's return bool. | Tavian Barnes | 2010-04-05 | 4 | -10/+12 |
| | |||||
* | Set errno on failures. | Tavian Barnes | 2010-04-01 | 22 | -39/+117 |
| | |||||
* | Add --disable-png configure option. | Tavian Barnes | 2010-04-01 | 4 | -2/+73 |
| | |||||
* | Add --disable-gl configure option. | Tavian Barnes | 2010-04-01 | 4 | -2/+64 |
| | |||||
* | Plug memory leak. | Tavian Barnes | 2010-03-31 | 1 | -0/+2 |
| | |||||
* | Support object identifiers. | Tavian Barnes | 2010-03-31 | 5 | -11/+106 |
| | |||||
* | Fix parsing of #include files containing #if. | Tavian Barnes | 2010-03-24 | 1 | -18/+18 |
| | |||||
* | New dmnsn_clear_canvas() function. | Tavian Barnes | 2010-03-24 | 3 | -0/+16 |
| | | | | Makes valgrind happier about the GL test. | ||||
* | Use $var instead of __var__ for internal symbols. | Tavian Barnes | 2010-03-23 | 4 | -29/+29 |
| | |||||
* | Allow identifiers beginning with _. | Tavian Barnes | 2010-03-23 | 1 | -1/+1 |
| |