Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Constness fix for cylinder.c. | Tavian Barnes | 2010-10-24 | 1 | -2/+2 | |
| | ||||||
* | Print something when warning test fails. | Tavian Barnes | 2010-10-24 | 1 | -0/+4 | |
| | ||||||
* | Fix inside calculation for cones. | Tavian Barnes | 2010-10-22 | 1 | -2/+5 | |
| | ||||||
* | Whitespace fix in lexer.l. | Tavian Barnes | 2010-10-21 | 1 | -1/+2 | |
| | ||||||
* | Change initial array capacity to 2. | Tavian Barnes | 2010-10-21 | 1 | -11/+11 | |
| | | | | | A quick experiment shows that arrays average less than 2 elements, and this helps a bit with the memory-hogginess of the parser. | |||||
* | Don't call malloc() in the default error handler. | Tavian Barnes | 2010-10-20 | 1 | -5/+1 | |
| | ||||||
* | Match the render.c scene's camera to demo.pov. | Tavian Barnes | 2010-10-20 | 1 | -1/+5 | |
| | ||||||
* | Add cones to dimension. | Tavian Barnes | 2010-10-20 | 9 | -17/+64 | |
| | ||||||
* | Add cone support to libdimension. | Tavian Barnes | 2010-10-20 | 4 | -21/+63 | |
| | ||||||
* | Missing `void' in argument list. | Tavian Barnes | 2010-10-20 | 1 | -1/+1 | |
| | ||||||
* | Missed some free() -> dmnsn_free() conversions. | Tavian Barnes | 2010-10-18 | 10 | -10/+10 | |
| | ||||||
* | Inline some commonly-used functions. | Tavian Barnes | 2010-10-18 | 4 | -31/+34 | |
| | ||||||
* | error.c improvements. | Tavian Barnes | 2010-10-02 | 1 | -9/+15 | |
| | ||||||
* | Error out if an error occurs in a raytracing worker thread. | Tavian Barnes | 2010-10-02 | 1 | -1/+8 | |
| | ||||||
* | Drop rwlock in progress.c on errors. | Tavian Barnes | 2010-09-30 | 1 | -6/+18 | |
| | ||||||
* | Fix behaviour when the error handler itself calls dmnsn_error(). | Tavian Barnes | 2010-09-30 | 2 | -4/+16 | |
| | ||||||
* | Use __thread for TLS in png.c. | Tavian Barnes | 2010-09-30 | 1 | -32/+3 | |
| | ||||||
* | Don't assume M_PI will be defined. | Tavian Barnes | 2010-09-30 | 1 | -2/+2 | |
| | ||||||
* | Make dmnsn_new_thread() bail out on errors. | Tavian Barnes | 2010-09-29 | 4 | -19/+9 | |
| | ||||||
* | Make parts of the progress API internal. | Tavian Barnes | 2010-09-29 | 5 | -44/+33 | |
| | ||||||
* | Fix race condition in error.c. | Tavian Barnes | 2010-09-29 | 1 | -2/+4 | |
| | ||||||
* | Fix whitespace in error.c. | Tavian Barnes | 2010-09-26 | 1 | -1/+0 | |
| | ||||||
* | Add a timer API to libdimension. | Tavian Barnes | 2010-09-26 | 8 | -44/+185 | |
| | ||||||
* | Add support for jemalloc. | Tavian Barnes | 2010-09-26 | 2 | -0/+17 | |
| | ||||||
* | Add dmnsn_free() to match dmnsn_malloc(). | Tavian Barnes | 2010-09-26 | 27 | -67/+74 | |
| | ||||||
* | Optimize DMNSN_ARRAY_FOREACH() a bit. | Tavian Barnes | 2010-09-19 | 1 | -3/+3 | |
| | ||||||
* | Add some dimension benchmarks. | Tavian Barnes | 2010-09-08 | 8 | -1/+270 | |
| | ||||||
* | Fix typo in README. | Tavian Barnes | 2010-09-08 | 1 | -1/+1 | |
| | ||||||
* | Add contents to README file. | Tavian Barnes | 2010-08-18 | 1 | -0/+33 | |
| | ||||||
* | Add cylinder support to dimension. | Tavian Barnes | 2010-08-15 | 9 | -2/+97 | |
| | ||||||
* | Make dmnsn_vector_axis_angle() handle edge cases. | Tavian Barnes | 2010-08-15 | 1 | -1/+5 | |
| | ||||||
* | Cylinder fixes. | Tavian Barnes | 2010-08-15 | 1 | -8/+17 | |
| | ||||||
* | Support closed cylinders. | Tavian Barnes | 2010-08-14 | 3 | -15/+42 | |
| | ||||||
* | Add cylinders to libdimension. | Tavian Barnes | 2010-08-14 | 5 | -1/+108 | |
| | ||||||
* | Get rid of a lot of unnecessary wakeups in dmnsn_wait_progress(). | Tavian Barnes | 2010-08-09 | 2 | -6/+23 | |
| | ||||||
* | Optimize PR-tree construction a bit. | Tavian Barnes | 2010-08-01 | 2 | -7/+13 | |
| | ||||||
* | Fix PR-tree implementation. | Tavian Barnes | 2010-08-01 | 2 | -14/+15 | |
| | | | | Grab priority leaves all at once instead of round-robin. | |||||
* | Fix some -W{strict,missing}-prototypes warnings. | Tavian Barnes | 2010-07-31 | 26 | -51/+51 | |
| | ||||||
* | Apply transformations to light sources too in CSG objects. | Tavian Barnes | 2010-07-30 | 1 | -16/+24 | |
| | ||||||
* | Move test outside of loop in dmnsn_prtree_intersection_recursive(). | Tavian Barnes | 2010-07-20 | 1 | -7/+13 | |
| | ||||||
* | Use dmnsn_min() and _max() in dmnsn_vector_min() and _max(). | Tavian Barnes | 2010-07-18 | 1 | -10/+10 | |
| | ||||||
* | Make DMNSN_PRTREE_B and internal types local to prtree.c. | Tavian Barnes | 2010-07-18 | 3 | -12/+15 | |
| | ||||||
* | Remove degeneracy test from ray-box intersections. | Tavian Barnes | 2010-07-18 | 1 | -17/+25 | |
| | | | | | To avoid testing degenerate boxes, set prtree->root to NULL when the tree contains no bounded objects. | |||||
* | Speed up cube intersection tests. | Tavian Barnes | 2010-07-16 | 1 | -83/+60 | |
| | ||||||
* | Add descriptive comment to new branchless ray-AABB intersection tests. | Tavian Barnes | 2010-07-15 | 1 | -0/+9 | |
| | ||||||
* | Remove some unneeded tests from ray-AABB intersection tests. | Tavian Barnes | 2010-07-15 | 1 | -43/+28 | |
| | ||||||
* | Clean up optimized ray-AABB intersection code a bit. | Tavian Barnes | 2010-07-15 | 1 | -21/+29 | |
| | ||||||
* | Make prtree benchmark use a more realistic ray. | Tavian Barnes | 2010-07-14 | 1 | -2/+2 | |
| | ||||||
* | Precalculate 1.0/ray.n.{x,y,z} for ray-box intersection tests. | Tavian Barnes | 2010-07-14 | 1 | -12/+17 | |
| | | | | This saves us nearly a factor of 2, and I feel silly for not doing this before. | |||||
* | Rename dimension_impl.h to dimension-impl.h. | Tavian Barnes | 2010-07-14 | 13 | -12/+13 | |
| |