Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Format S-expressions a bit nicer in test scripts. | Tavian Barnes | 2009-11-25 | 3 | -5/+53 | |
| | ||||||
* | Use FLOAT_EXPR in VECTOR_LITERAL rather than FLOAT. | Tavian Barnes | 2009-11-25 | 1 | -4/+6 | |
| | | | | This is to future-proof lazily-evaluated vector expressions. | |||||
* | Implement object modifiers and rotation. | Tavian Barnes | 2009-11-25 | 7 | -40/+112 | |
| | ||||||
* | Support vector component extraction. | Tavian Barnes | 2009-11-24 | 4 | -18/+89 | |
| | ||||||
* | New arithmetic expression test. | Tavian Barnes | 2009-11-24 | 5 | -5/+60 | |
| | ||||||
* | Support vector arithmetic. | Tavian Barnes | 2009-11-24 | 3 | -10/+181 | |
| | ||||||
* | Use associative operators in grammar. | Tavian Barnes | 2009-11-24 | 1 | -30/+25 | |
| | ||||||
* | Rename flex and bison input files. | Tavian Barnes | 2009-11-24 | 5 | -7/+7 | |
| | ||||||
* | Make string lexing O(n). | Tavian Barnes | 2009-11-24 | 1 | -4/+9 | |
| | ||||||
* | Fix off-by-one in string lexing. | tavianator | 2009-11-24 | 1 | -1/+1 | |
| | ||||||
* | 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 | |
| |