From 2c56e11c59c8373b81b0bb49562fe88cba088d4e Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Mon, 24 Nov 2014 18:21:36 -0800 Subject: [PATCH] doc tweaks --- stb_rect_pack.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stb_rect_pack.h b/stb_rect_pack.h index 62d9a4b..38cd75a 100644 --- a/stb_rect_pack.h +++ b/stb_rect_pack.h @@ -110,13 +110,13 @@ STBRP_DEF void stbrp_init_target (stbrp_context *context, int width, int height, STBRP_DEF void stbrp_setup_allow_out_of_mem (stbrp_context *context, int allow_out_of_mem); // Optionally call this function after init but before doing any packing to // change the handling of the out-of-temp-memory scenario, described above. -// If you call init again, this will be reset. +// If you call init again, this will be reset to the default (false). STBRP_DEF void stbrp_setup_heuristic (stbrp_context *context, int heuristic); // Optionally select which packing heuristic the library should use. Different // heuristics will produce better/worse results for different data sets. -// If you call init again, this will be reset. +// If you call init again, this will be reset to the default. enum { -- GitLab