Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New DMNSN_ARRAY_FOREACH() macro, faster than iterating with dmnsn_array_get(). | Tavian Barnes | 2010-05-08 | 1 | -10/+6 |
| | |||||
* | Use C99 for loop initializers. | Tavian Barnes | 2010-05-05 | 1 | -4/+2 |
| | |||||
* | Typo in comment. | Tavian Barnes | 2010-04-27 | 1 | -1/+1 |
| | |||||
* | Give backtraces for diagnostics from macros and include files. | Tavian Barnes | 2010-04-18 | 1 | -0/+8 |
| | | | | | 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 | 1 | -9/+3 |
| | |||||
* | 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 |
| | |||||
* | Implement image_{width,height}. | Tavian Barnes | 2010-04-16 | 1 | -0/+8 |
| | |||||
* | Initial support for image_maps. | Tavian Barnes | 2010-04-15 | 1 | -0/+18 |
| | |||||
* | Support transforming pigments and textures in dimension. | Tavian Barnes | 2010-04-15 | 1 | -1/+15 |
| | |||||
* | Support planes in dimension. | Tavian Barnes | 2010-04-15 | 1 | -0/+13 |
| | |||||
* | Improve CSG and light handling. | Tavian Barnes | 2010-04-10 | 1 | -3/+4 |
| | | | | | | - Lights can be inside CSG objects - Lights can be modified by transformations - CSG objects can contain only one object | ||||
* | New dmnsn_malloc() function, and friends. | Tavian Barnes | 2010-04-07 | 1 | -14/+3 |
| | | | | | | 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 | 1 | -0/+51 |
| | |||||
* | Plug memory leak. | Tavian Barnes | 2010-03-31 | 1 | -0/+2 |
| | |||||
* | Support object identifiers. | Tavian Barnes | 2010-03-31 | 1 | -8/+63 |
| | |||||
* | Standardise diagnostics a bit. | Tavian Barnes | 2010-03-23 | 1 | -1/+1 |
| | |||||
* | Implement macro support. | Tavian Barnes | 2010-03-23 | 1 | -7/+18 |
| | |||||
* | Implement most vector functions. | Tavian Barnes | 2010-03-23 | 1 | -0/+15 |
| | |||||
* | Support the ternary operator. | Tavian Barnes | 2010-03-22 | 1 | -1/+41 |
| | |||||
* | Handle built-in vector IDs the same way as floats. | Tavian Barnes | 2010-03-22 | 1 | -27/+13 |
| | |||||
* | Add built-in float constants. | Tavian Barnes | 2010-03-22 | 1 | -0/+21 |
| | |||||
* | Support max() and min(). | Tavian Barnes | 2010-03-20 | 1 | -0/+22 |
| | |||||
* | Implement almost all float functions. | Tavian Barnes | 2010-03-20 | 1 | -0/+48 |
| | |||||
* | A bunch more float functions. | Tavian Barnes | 2010-03-20 | 1 | -0/+45 |
| | |||||
* | Support exp(). | Tavian Barnes | 2010-03-19 | 1 | -0/+3 |
| | |||||
* | Implement unit vectors. | Tavian Barnes | 2010-03-09 | 1 | -0/+6 |
| | |||||
* | Don't treat colors and vectors as different types. | Tavian Barnes | 2010-03-08 | 1 | -5/+1 |
| | | | | | This allows things like 0.5*White, where White was #defined to be a color. POV-Ray's colors.inc almost parses now. | ||||
* | Allow bare finishes in object modifiers. | Tavian Barnes | 2010-02-28 | 1 | -3/+2 |
| | |||||
* | Parse interiors. | Tavian Barnes | 2010-02-25 | 1 | -0/+19 |
| | |||||
* | Support #include. | Tavian Barnes | 2010-02-09 | 1 | -1/+7 |
| | |||||
* | "Support" the #version directive. | Tavian Barnes | 2010-02-05 | 1 | -1/+1 |
| | |||||
* | Fix #line off-by-one :) | Tavian Barnes | 2010-02-03 | 1 | -1/+1 |
| | |||||
* | Add #line markers to {common,grammar,directives}.{prologue,declarations,...}. | Tavian Barnes | 2010-02-02 | 1 | -0/+2 |
| | |||||
* | Use dmnsn_new_ast_integer() in parsers. | Tavian Barnes | 2010-02-02 | 1 | -8/+1 |
| | |||||
* | Implement #declare, #local, and #undef in middle tier. | Tavian Barnes | 2010-02-01 | 1 | -0/+506 |
Oh God this is ugly... |