summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Translucency support.Tavian Barnes2009-11-187-50/+141
|
* Use CIE 1931 RGB for dmnsn_color_illuminate().Tavian Barnes2009-11-173-26/+99
|
* Tweak test scene a bit.Tavian Barnes2009-11-171-2/+2
|
* Implement phong shading.Tavian Barnes2009-11-174-14/+56
|
* Make finish callback a propper BRDF.Tavian Barnes2009-11-175-31/+53
|
* Use "diffuse" instead of "specular" for diffuse finish.Tavian Barnes2009-11-173-7/+7
|
* Remove libdimensionxx.texi.Tavian Barnes2009-11-132-54/+2
|
* PGO build improvements.Tavian Barnes2009-11-134-22/+29
|
* Improve PGO build a bit.Tavian Barnes2009-11-121-6/+8
|
* Implement profile-guided optimization builds.Tavian Barnes2009-11-124-4/+41
|
* Make dmnsn_illuminate_color() work, with sRGB for now.Tavian Barnes2009-11-111-20/+7
|
* Raytrace one row of pixels per thread.Tavian Barnes2009-11-091-5/+2
| | | | | | The theory is that if the next ray shot is closer to the previous ray, the k-D splay tree will work better because we're more likely to hit the same object.
* Correct dmnsn_color_illuminate().Tavian Barnes2009-11-093-12/+20
|
* Don't fail GL test if we can't get a GL context.Tavian Barnes2009-11-091-2/+2
| | | | Instead output a warning. Useful for running tests from a CLI.
* Use finishes.Tavian Barnes2009-11-095-65/+104
|
* Add support for finishes (BRDFs).Tavian Barnes2009-11-096-3/+129
|
* Calculate surface normals in intersection callbacks.Tavian Barnes2009-11-095-13/+25
|
* Render multiple (or zero) lights correctly.Tavian Barnes2009-11-091-1/+2
|
* Store inverse object transformation in a separate field.Tavian Barnes2009-11-094-21/+16
|
* Remove unused variable.Tavian Barnes2009-11-091-1/+0
|
* Rudimentary light/shadow handling.Tavian Barnes2009-11-095-22/+109
|
* Add a light to the default test scene.Tavian Barnes2009-11-091-13/+18
|
* Make dmnsn_delete_scene() delete the scene's elements too.Tavian Barnes2009-11-098-63/+44
|
* Add lights to scenes.Tavian Barnes2009-11-092-6/+12
|
* Add support for lights.Tavian Barnes2009-11-096-1/+183
|
* Make default fatal error handler nicer.Tavian Barnes2009-11-051-2/+27
| | | | If we can, only exit the current thread, and print a backtrace.
* rm -f *.png in clean target.tavianator2009-11-051-1/+1
|
* Add file, line, and column information to astnodes.Tavian Barnes2009-11-052-24/+33
|
* Some much-needed comments in parse.c.Tavian Barnes2009-11-051-5/+53
|
* Don't use GNU make %-style target extension.Tavian Barnes2009-11-041-1/+1
|
* Parse arithmetic expressions.Tavian Barnes2009-11-045-67/+280
|
* Handle spheres.Tavian Barnes2009-11-046-26/+139
|
* Implement dmnsn_print_astree_sexpr().Tavian Barnes2009-10-315-25/+114
|
* Initialize `i' in dmnsn_parse().Tavian Barnes2009-10-301-0/+1
|
* Remove progress bars from tests, as parallel-tests hides output anyway.Tavian Barnes2009-10-304-212/+75
|
* Don't flip boxes that are specified backwards.Tavian Barnes2009-10-301-3/+6
|
* Refactor parsing and realization a bit.Tavian Barnes2009-10-303-29/+49
|
* Fix dmnsn_kD_splay_node_swallow() typo.Tavian Barnes2009-10-301-4/+4
|
* (Sort of) realize boxes.Tavian Barnes2009-10-302-2/+71
| | | | We now have a working rendering from an SDL input, kinda!
* Don't flip optimized PNG writes.Tavian Barnes2009-10-301-2/+3
|
* (Sort of) parse boxes.Tavian Barnes2009-10-3010-27/+360
|
* Skeleton of parser and realizer.Tavian Barnes2009-10-296-9/+169
|
* Make sure we die on critical dmnsn_error()'s.Tavian Barnes2009-10-291-0/+2
|
* Correctly tokenize <=, >= and !=.Tavian Barnes2009-10-294-22/+55
|
* Support all POV-Ray keywords.Tavian Barnes2009-10-294-11/+1284
|
* Correct locale "transaction" handling in dmnsn_tokenize().Tavian Barnes2009-10-291-8/+8
|
* Rename DMNSN_T_EXCLAMATION to DMNSN_T_BANG.tavianator2009-10-292-43/+43
|
* Refactor tokenizer a bit.tavianator2009-10-295-28/+93
|
* Don't modify lines, cols, or next in tokenizer helper functions.Tavian Barnes2009-10-291-175/+207
|
* Even more tokenizer work.Tavian Barnes2009-10-293-117/+96
| | | | | | 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.