Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add eager arithmetic evaluation to parser. | Tavian Barnes | 2009-11-23 | 2 | -18/+289 |
| | |||||
* | More parser work. | Tavian Barnes | 2009-11-23 | 5 | -29/+121 |
| | |||||
* | Begin bison implementation of parser. | Tavian Barnes | 2009-11-23 | 10 | -2100/+1060 |
| | |||||
* | Calculate column correctly in tokenizing. | Tavian Barnes | 2009-11-23 | 1 | -21/+38 |
| | |||||
* | Support nested /* */ comments. | Tavian Barnes | 2009-11-23 | 2 | -22/+28 |
| | |||||
* | Use flex for the tokenizer. | Tavian Barnes | 2009-11-23 | 7 | -1600/+782 |
| | |||||
* | Mess with `dimension' output a bit. | Tavian Barnes | 2009-11-21 | 2 | -6/+6 |
| | |||||
* | Fix tests. | Tavian Barnes | 2009-11-20 | 1 | -3/+16 |
| | |||||
* | Fix progress calculation in raytracing. | Tavian Barnes | 2009-11-20 | 1 | -1/+1 |
| | |||||
* | Make `dimension' output some things as it works. | Tavian Barnes | 2009-11-20 | 7 | -2/+109 |
| | |||||
* | Fix parsing memory leaks, remove debug. | Tavian Barnes | 2009-11-20 | 1 | -13/+23 |
| | |||||
* | Evaluate arithmetic expressions during parsing when possible. | Tavian Barnes | 2009-11-20 | 3 | -22/+191 |
| | | | | | This is needed for conditionals to work, and for declared identifiers to be evaluated only once. | ||||
* | Allow PGO profiling tests to run in parallel. | tavianator | 2009-11-19 | 1 | -1/+1 |
| | | | | | According to the GCC documentation, -fprofile-arcs handles concurrent executions correctly with file locking. | ||||
* | Use dmnsn_new_*() rather than dmnsn_*_construct(). | Tavian Barnes | 2009-11-19 | 11 | -119/+114 |
| | |||||
* | Refactor raytrace.c a bit. | Tavian Barnes | 2009-11-19 | 1 | -56/+81 |
| | |||||
* | Implement translucency with shadows. | Tavian Barnes | 2009-11-19 | 1 | -10/+35 |
| | |||||
* | Calculate .filter and .trans correctly in dmnsn_color_filter(). | Tavian Barnes | 2009-11-19 | 1 | -1/+5 |
| | |||||
* | Make dmnsn_illuminate_color() perceptually uniform. | Tavian Barnes | 2009-11-19 | 1 | -54/+54 |
| | |||||
* | Translucency support. | Tavian Barnes | 2009-11-18 | 7 | -50/+141 |
| | |||||
* | Use CIE 1931 RGB for dmnsn_color_illuminate(). | Tavian Barnes | 2009-11-17 | 3 | -26/+99 |
| | |||||
* | Tweak test scene a bit. | Tavian Barnes | 2009-11-17 | 1 | -2/+2 |
| | |||||
* | Implement phong shading. | Tavian Barnes | 2009-11-17 | 4 | -14/+56 |
| | |||||
* | Make finish callback a propper BRDF. | Tavian Barnes | 2009-11-17 | 5 | -31/+53 |
| | |||||
* | Use "diffuse" instead of "specular" for diffuse finish. | Tavian Barnes | 2009-11-17 | 3 | -7/+7 |
| | |||||
* | Remove libdimensionxx.texi. | Tavian Barnes | 2009-11-13 | 2 | -54/+2 |
| | |||||
* | PGO build improvements. | Tavian Barnes | 2009-11-13 | 4 | -22/+29 |
| | |||||
* | Improve PGO build a bit. | Tavian Barnes | 2009-11-12 | 1 | -6/+8 |
| | |||||
* | Implement profile-guided optimization builds. | Tavian Barnes | 2009-11-12 | 4 | -4/+41 |
| | |||||
* | Make dmnsn_illuminate_color() work, with sRGB for now. | Tavian Barnes | 2009-11-11 | 1 | -20/+7 |
| | |||||
* | Raytrace one row of pixels per thread. | Tavian Barnes | 2009-11-09 | 1 | -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 Barnes | 2009-11-09 | 3 | -12/+20 |
| | |||||
* | Don't fail GL test if we can't get a GL context. | Tavian Barnes | 2009-11-09 | 1 | -2/+2 |
| | | | | Instead output a warning. Useful for running tests from a CLI. | ||||
* | Use finishes. | Tavian Barnes | 2009-11-09 | 5 | -65/+104 |
| | |||||
* | Add support for finishes (BRDFs). | Tavian Barnes | 2009-11-09 | 6 | -3/+129 |
| | |||||
* | Calculate surface normals in intersection callbacks. | Tavian Barnes | 2009-11-09 | 5 | -13/+25 |
| | |||||
* | Render multiple (or zero) lights correctly. | Tavian Barnes | 2009-11-09 | 1 | -1/+2 |
| | |||||
* | Store inverse object transformation in a separate field. | Tavian Barnes | 2009-11-09 | 4 | -21/+16 |
| | |||||
* | Remove unused variable. | Tavian Barnes | 2009-11-09 | 1 | -1/+0 |
| | |||||
* | Rudimentary light/shadow handling. | Tavian Barnes | 2009-11-09 | 5 | -22/+109 |
| | |||||
* | Add a light to the default test scene. | Tavian Barnes | 2009-11-09 | 1 | -13/+18 |
| | |||||
* | Make dmnsn_delete_scene() delete the scene's elements too. | Tavian Barnes | 2009-11-09 | 8 | -63/+44 |
| | |||||
* | Add lights to scenes. | Tavian Barnes | 2009-11-09 | 2 | -6/+12 |
| | |||||
* | Add support for lights. | Tavian Barnes | 2009-11-09 | 6 | -1/+183 |
| | |||||
* | Make default fatal error handler nicer. | Tavian Barnes | 2009-11-05 | 1 | -2/+27 |
| | | | | If we can, only exit the current thread, and print a backtrace. | ||||
* | rm -f *.png in clean target. | tavianator | 2009-11-05 | 1 | -1/+1 |
| | |||||
* | Add file, line, and column information to astnodes. | Tavian Barnes | 2009-11-05 | 2 | -24/+33 |
| | |||||
* | Some much-needed comments in parse.c. | Tavian Barnes | 2009-11-05 | 1 | -5/+53 |
| | |||||
* | Don't use GNU make %-style target extension. | Tavian Barnes | 2009-11-04 | 1 | -1/+1 |
| | |||||
* | Parse arithmetic expressions. | Tavian Barnes | 2009-11-04 | 5 | -67/+280 |
| | |||||
* | Handle spheres. | Tavian Barnes | 2009-11-04 | 6 | -26/+139 |
| |