Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Plug leak in list benchmark. | Tavian Barnes | 2010-05-22 | 1 | -0/+1 | |
| | ||||||
* | Add std-options check to 'make installcheck'. | Tavian Barnes | 2010-05-21 | 2 | -2/+16 | |
| | ||||||
* | Use quiet build and colored tests. | Tavian Barnes | 2010-05-21 | 2 | -15/+17 | |
| | ||||||
* | Use "dimension.h" rather than <dimension.h> in #includes. | Tavian Barnes | 2010-05-21 | 3 | -3/+3 | |
| | ||||||
* | Use mixed declarations in array benchmark. | Tavian Barnes | 2010-05-21 | 1 | -6/+5 | |
| | ||||||
* | Add list benchmark. | Tavian Barnes | 2010-05-21 | 2 | -4/+140 | |
| | ||||||
* | Fix memory handling in dmnsn_new_thread(). | Tavian Barnes | 2010-05-21 | 1 | -1/+2 | |
| | ||||||
* | Store the bounding boxes of child PR-tree nodes in the parent. | Tavian Barnes | 2010-05-20 | 2 | -60/+67 | |
| | | | | This improves cache locality and is good for about a 10% performance boost. | |||||
* | New dmnsn_vector_element() function. | Tavian Barnes | 2010-05-18 | 1 | -0/+25 | |
| | ||||||
* | .gitignore libdimension.pc. | Tavian Barnes | 2010-05-17 | 1 | -0/+3 | |
| | ||||||
* | Use /* style comments instead of // in realize.c. | Tavian Barnes | 2010-05-17 | 1 | -2/+2 | |
| | ||||||
* | Add a pkg-config file to libdimension. | Tavian Barnes | 2010-05-13 | 3 | -0/+15 | |
| | ||||||
* | Don't attempt to use profile data for profiling build. | Tavian Barnes | 2010-05-13 | 1 | -1/+1 | |
| | ||||||
* | Fix some copyright dates. | Tavian Barnes | 2010-05-10 | 80 | -81/+81 | |
| | ||||||
* | Write some more docs, and fix a couple things noticed while writing them. | Tavian Barnes | 2010-05-10 | 5 | -15/+166 | |
| | ||||||
* | New dmnsn_new_thread() function. | Tavian Barnes | 2010-05-09 | 6 | -174/+228 | |
| | | | | | | | Two advantages: first, waiters are guaranteed to wake if a dmnsn_error() cancels a thread. Second, the thread library is fully abstracted over by threads.{c,h} and progress.{c,h} now, though raytrace.c is still using pthread_create() directly. | |||||
* | Clean up some unused variables. | Tavian Barnes | 2010-05-09 | 2 | -4/+1 | |
| | ||||||
* | New DMNSN_ARRAY_FOREACH() macro, faster than iterating with dmnsn_array_get(). | Tavian Barnes | 2010-05-08 | 12 | -218/+169 | |
| | ||||||
* | Handle degenerate cases in ray/box intersections. | Tavian Barnes | 2010-05-08 | 2 | -1/+19 | |
| | ||||||
* | Fix argument to malloc(). | Tavian Barnes | 2010-05-07 | 1 | -1/+1 | |
| | ||||||
* | Don't store unbounded objects (planes, etc.) in the PR-tree. | Tavian Barnes | 2010-05-07 | 2 | -24/+94 | |
| | | | | | Keep them in a dmnsn_array* instead. This makes the tree better and saves us some search time. | |||||
* | New dmnsn_array_from_list() function. | Tavian Barnes | 2010-05-07 | 2 | -7/+24 | |
| | ||||||
* | Make tests pass with -fno-signed-zeros. | Tavian Barnes | 2010-05-06 | 1 | -2/+4 | |
| | ||||||
* | Only render in one combined `render' test. | Tavian Barnes | 2010-05-06 | 4 | -83/+178 | |
| | | | | GL and PNG tests now only test import/export. | |||||
* | Get rid of "../" in #includes. | Tavian Barnes | 2010-05-06 | 8 | -8/+8 | |
| | ||||||
* | Use C99 for loop initializers. | Tavian Barnes | 2010-05-05 | 24 | -177/+127 | |
| | ||||||
* | Write a PR-tree test. | Tavian Barnes | 2010-05-05 | 2 | -2/+63 | |
| | ||||||
* | Optimize ray-AABB intersection tests a bit. | Tavian Barnes | 2010-05-05 | 1 | -51/+29 | |
| | ||||||
* | Make dmnsn_new_prtree() handle empty scenes. | Tavian Barnes | 2010-05-05 | 1 | -0/+6 | |
| | ||||||
* | Fix prtree benchmark. | Tavian Barnes | 2010-05-05 | 1 | -95/+24 | |
| | ||||||
* | Replace BVSTs with priority R-trees. | Tavian Barnes | 2010-05-05 | 10 | -517/+636 | |
| | ||||||
* | Optimize cube intersection function a bit. | Tavian Barnes | 2010-05-04 | 1 | -59/+82 | |
| | ||||||
* | Add dmnsn_{min,max}() inlines. | Tavian Barnes | 2010-05-04 | 1 | -0/+14 | |
| | ||||||
* | Don't apply the transformations which create an object to its textures. | Tavian Barnes | 2010-05-03 | 1 | -0/+13 | |
| | | | | For example, sphere { 0, 2 } would scale the texture by a factor of 2. | |||||
* | Don't apply object modifiers to a NULL CSG object. | Tavian Barnes | 2010-05-03 | 1 | -1/+2 | |
| | ||||||
* | Don't report success when autogen.sh fails. | Tavian Barnes | 2010-05-03 | 1 | -4/+4 | |
| | ||||||
* | Remove debugging code from dmnsn_list_sort(). | Tavian Barnes | 2010-05-03 | 1 | -8/+2 | |
| | ||||||
* | Fix list sorting. | Tavian Barnes | 2010-05-01 | 2 | -9/+25 | |
| | ||||||
* | Implement list sorting. | Tavian Barnes | 2010-04-30 | 2 | -18/+109 | |
| | ||||||
* | Use dmnsn_assert() for array and list range checks. | Tavian Barnes | 2010-04-30 | 4 | -38/+19 | |
| | ||||||
* | Add a generic list type. | Tavian Barnes | 2010-04-30 | 6 | -2/+246 | |
| | ||||||
* | Typo in comment. | Tavian Barnes | 2010-04-27 | 1 | -1/+1 | |
| | ||||||
* | Fix some includes. | Tavian Barnes | 2010-04-27 | 23 | -3/+24 | |
| | ||||||
* | Fix some spurious includes. | Tavian Barnes | 2010-04-27 | 2 | -4/+3 | |
| | ||||||
* | Give backtraces for diagnostics from macros and include files. | Tavian Barnes | 2010-04-18 | 9 | -27/+66 | |
| | | | | | Partly this means that dmnsn_diagnostic() can't be called anywhere except during parsing, because the dmnsn_parse_location::parent pointers dangle. | |||||
* | Plug memory leak in object parsing failure path. | Tavian Barnes | 2010-04-18 | 1 | -42/+45 | |
| | ||||||
* | Have dmnsn_diagnostic() take a dmnsn_parse_location. | Tavian Barnes | 2010-04-18 | 12 | -156/+103 | |
| | ||||||
* | Support objects in object{} blocks. | Tavian Barnes | 2010-04-18 | 1 | -0/+22 | |
| | ||||||
* | Support all object identifier types. | Tavian Barnes | 2010-04-18 | 1 | -1/+6 | |
| | ||||||
* | Fix segfault on parse error within macro. | Tavian Barnes | 2010-04-18 | 1 | -1/+2 | |
| | | | | | The macro token buffer was being freed by both yylex_cleanup() and dmnsn_delete_patricia_trie(). |