From 8807ab192b36acbc94e11790e9261c799ce77892 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 30 May 2014 19:03:33 -0400 Subject: pattern: Use pool. --- libdimension/dimension/patterns.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'libdimension/dimension/patterns.h') diff --git a/libdimension/dimension/patterns.h b/libdimension/dimension/patterns.h index c956b91..59b7fec 100644 --- a/libdimension/dimension/patterns.h +++ b/libdimension/dimension/patterns.h @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (C) 2009-2011 Tavian Barnes * + * Copyright (C) 2009-2014 Tavian Barnes * * * * This file is part of The Dimension Library. * * * @@ -26,20 +26,23 @@ /** * A checker pattern. The pattern is composed of tesselating unit cubes * alternating between 0 and 1. + * @param[in] pool The memory pool to allocate from. * @return A checker pattern. */ -dmnsn_pattern *dmnsn_new_checker_pattern(void); +dmnsn_pattern *dmnsn_new_checker_pattern(dmnsn_pool *pool); /** * A gradient. The value starts at 0 at the origin, and goes linearly to 1 in * the direction of \p orientation, then repeats after a distance of 1. + * @param[in] pool The memory pool to allocate from. * @param[in] orientation The direction of the gradient. * @return A gradient pattern. */ -dmnsn_pattern *dmnsn_new_gradient_pattern(dmnsn_vector orientation); +dmnsn_pattern *dmnsn_new_gradient_pattern(dmnsn_pool *pool, dmnsn_vector orientation); /** * A leopard pattern. + * @param[in] pool The memory pool to allocate from. * @return A leopard pattern. */ -dmnsn_pattern *dmnsn_new_leopard_pattern(void); +dmnsn_pattern *dmnsn_new_leopard_pattern(dmnsn_pool *pool); -- cgit v1.2.3