summaryrefslogtreecommitdiffstats
path: root/libdimension/tests
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2014-05-30 19:23:34 -0400
committerTavian Barnes <tavianator@tavianator.com>2014-05-30 19:23:34 -0400
commit72daebf48e4a27de9f6633b2693ab96fb4ef1e44 (patch)
tree41d98c736ea9fcb6cdc47c621130b08b48a145de /libdimension/tests
parent8807ab192b36acbc94e11790e9261c799ce77892 (diff)
downloaddimension-72daebf48e4a27de9f6633b2693ab96fb4ef1e44.tar.xz
map: Use pool.
Diffstat (limited to 'libdimension/tests')
-rw-r--r--libdimension/tests/render.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdimension/tests/render.c b/libdimension/tests/render.c
index 4c230e1..2906717 100644
--- a/libdimension/tests/render.c
+++ b/libdimension/tests/render.c
@@ -72,7 +72,7 @@ static void
dmnsn_test_scene_add_background(dmnsn_pool *pool, dmnsn_scene *scene)
{
dmnsn_pattern *sky_gradient = dmnsn_new_gradient_pattern(pool, dmnsn_y);
- dmnsn_map *sky_gradient_pigment_map = dmnsn_new_pigment_map();
+ dmnsn_map *sky_gradient_pigment_map = dmnsn_new_pigment_map(pool);
dmnsn_canvas *png_canvas = NULL;
dmnsn_pigment *png_pigment;
@@ -173,7 +173,7 @@ dmnsn_test_scene_add_spike(dmnsn_pool *pool, dmnsn_scene *scene)
dmnsn_object *arrow = dmnsn_new_csg_union(arrow_array);
dmnsn_delete_array(arrow_array);
dmnsn_pattern *gradient = dmnsn_new_gradient_pattern(pool, dmnsn_y);
- dmnsn_map *gradient_pigment_map = dmnsn_new_pigment_map();
+ dmnsn_map *gradient_pigment_map = dmnsn_new_pigment_map(pool);
dmnsn_pigment_map_add_color(gradient_pigment_map, 0.0, dmnsn_red);
dmnsn_pigment_map_add_color(gradient_pigment_map, 1.0/6.0, dmnsn_orange);
dmnsn_pigment_map_add_color(gradient_pigment_map, 2.0/6.0, dmnsn_yellow);
@@ -266,7 +266,7 @@ dmnsn_test_scene_add_ground(dmnsn_pool *pool, dmnsn_scene *scene)
dmnsn_object *plane = dmnsn_new_plane(dmnsn_new_vector(0.0, 1.0, 0.0));
plane->trans = dmnsn_translation_matrix(dmnsn_new_vector(0.0, -2.0, 0.0));
dmnsn_pattern *checker = dmnsn_new_checker_pattern(pool);
- dmnsn_map *small_map = dmnsn_new_pigment_map();
+ dmnsn_map *small_map = dmnsn_new_pigment_map(pool);
dmnsn_pigment_map_add_color(small_map, 0.0, dmnsn_black);
dmnsn_pigment_map_add_color(small_map, 1.0, dmnsn_white);
dmnsn_pigment *small_pigment =
@@ -274,7 +274,7 @@ dmnsn_test_scene_add_ground(dmnsn_pool *pool, dmnsn_scene *scene)
DMNSN_PIGMENT_MAP_REGULAR);
small_pigment->trans =
dmnsn_scale_matrix(dmnsn_new_vector(1.0/3.0, 1.0/3.0, 1.0/3.0));
- dmnsn_map *big_map = dmnsn_new_pigment_map();
+ dmnsn_map *big_map = dmnsn_new_pigment_map(pool);
dmnsn_pigment_map_add_color(big_map, 0.0, dmnsn_white);
dmnsn_map_add_entry(big_map, 1.0, &small_pigment);
plane->texture = dmnsn_new_texture();