summaryrefslogtreecommitdiffstats
path: root/tests/dimension
Commit message (Collapse)AuthorAgeFilesLines
* Distribute directives.inc; fixes distcheck.Tavian Barnes2010-02-111-0/+1
|
* Support stream directives.Tavian Barnes2010-02-112-6/+11
|
* Fix directives test.Tavian Barnes2010-02-101-1/+1
|
* Support #include.Tavian Barnes2010-02-093-2/+31
|
* "Support" the #version directive.Tavian Barnes2010-02-052-1/+4
|
* Implement #while.Tavian Barnes2010-02-032-16/+32
|
* Support #ifdef and #ifndef.Tavian Barnes2010-02-022-0/+7
|
* Skip over invalid tokens in non-taken conditionals.Tavian Barnes2010-02-022-2/+2
|
* Implement #if.Tavian Barnes2010-02-022-10/+18
|
* Fix up license blurbs and copyright year.Tavian Barnes2010-01-2715-15/+15
|
* Support reflective finishes.Tavian Barnes2010-01-142-3/+16
|
* Begin parsing finishes.Tavian Barnes2010-01-142-6/+16
|
* Make build system more bourne-compatible.Tavian Barnes2010-01-071-1/+1
|
* Clean up parser, and make it GLR.Tavian Barnes2009-12-212-3/+3
|
* Differentiate between colors and vectors in the AST.Tavian Barnes2009-12-212-8/+8
|
* Support #declare, #local, and #undef.Tavian Barnes2009-12-212-6/+37
|
* Accept width and height command-line arguments.Tavian Barnes2009-12-161-1/+1
|
* Work in sRGB to be more like POV-Ray.Tavian Barnes2009-12-072-2/+2
|
* Finish camera placement routine.Tavian Barnes2009-11-272-4/+5
|
* Fake camera semantics until I figure out the real ones.Tavian Barnes2009-11-272-3/+3
|
* Add cameras to grammar.Tavian Barnes2009-11-262-1/+18
|
* Implement background colors.Tavian Barnes2009-11-262-28/+13
|
* Add vector promotion.Tavian Barnes2009-11-252-3/+4
|
* Fix binary vector arithmetic expressions.Tavian Barnes2009-11-252-2/+3
|
* Implement point lights.Tavian Barnes2009-11-252-7/+18
|
* Support solid-color pigments.Tavian Barnes2009-11-252-3/+22
|
* Format S-expressions a bit nicer in test scripts.Tavian Barnes2009-11-253-5/+53
|
* Implement object modifiers and rotation.Tavian Barnes2009-11-253-3/+4
|
* Support vector component extraction.Tavian Barnes2009-11-242-2/+2
|
* New arithmetic expression test.Tavian Barnes2009-11-245-5/+60
|
* Support vector arithmetic.Tavian Barnes2009-11-242-3/+3
|
* More parser work.Tavian Barnes2009-11-233-3/+3
|
* Begin bison implementation of parser.Tavian Barnes2009-11-233-3/+3
|
* Support nested /* */ comments.Tavian Barnes2009-11-231-1/+3
|
* Use flex for the tokenizer.Tavian Barnes2009-11-231-1/+1
|
* Evaluate arithmetic expressions during parsing when possible.Tavian Barnes2009-11-202-3/+3
| | | | | This is needed for conditionals to work, and for declared identifiers to be evaluated only once.
* rm -f *.png in clean target.tavianator2009-11-051-1/+1
|
* Don't use GNU make %-style target extension.Tavian Barnes2009-11-041-1/+1
|
* Parse arithmetic expressions.Tavian Barnes2009-11-042-4/+4
|
* Handle spheres.Tavian Barnes2009-11-043-13/+14
|
* Implement dmnsn_print_astree_sexpr().Tavian Barnes2009-10-311-0/+10
|
* Refactor parsing and realization a bit.Tavian Barnes2009-10-301-1/+4
|
* (Sort of) realize boxes.Tavian Barnes2009-10-301-1/+1
| | | | We now have a working rendering from an SDL input, kinda!
* (Sort of) parse boxes.Tavian Barnes2009-10-304-17/+55
|
* Correctly tokenize <=, >= and !=.Tavian Barnes2009-10-292-10/+2
|
* Support all POV-Ray keywords.Tavian Barnes2009-10-292-2/+2
|
* Even more tokenizer work.Tavian Barnes2009-10-291-1/+1
| | | | | | The tokenizer is now able to tokenize all of POV-Ray 3.6's include files. It turns out that some #includes may be dynamic (ex. with #writes beforehand), so the tokenizer can't directly perform includes - the executor must do this.
* Complete string parsing.Tavian Barnes2009-10-292-3/+2
|
* Split tokenizer.sh into multiple tests.Tavian Barnes2009-10-286-47/+137
|
* Make '#include' work.Tavian Barnes2009-10-281-1/+1
|