Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | Implement dmnsn_print_astree_sexpr(). | Tavian Barnes | 2009-10-31 | 5 | -25/+114 | |
| | ||||||
* | Initialize `i' in dmnsn_parse(). | Tavian Barnes | 2009-10-30 | 1 | -0/+1 | |
| | ||||||
* | Remove progress bars from tests, as parallel-tests hides output anyway. | Tavian Barnes | 2009-10-30 | 4 | -212/+75 | |
| | ||||||
* | Don't flip boxes that are specified backwards. | Tavian Barnes | 2009-10-30 | 1 | -3/+6 | |
| | ||||||
* | Refactor parsing and realization a bit. | Tavian Barnes | 2009-10-30 | 3 | -29/+49 | |
| | ||||||
* | Fix dmnsn_kD_splay_node_swallow() typo. | Tavian Barnes | 2009-10-30 | 1 | -4/+4 | |
| | ||||||
* | (Sort of) realize boxes. | Tavian Barnes | 2009-10-30 | 2 | -2/+71 | |
| | | | | We now have a working rendering from an SDL input, kinda! | |||||
* | Don't flip optimized PNG writes. | Tavian Barnes | 2009-10-30 | 1 | -2/+3 | |
| | ||||||
* | (Sort of) parse boxes. | Tavian Barnes | 2009-10-30 | 10 | -27/+360 | |
| |