Compare commits

..

2 Commits

Author SHA1 Message Date
Brett 4b82f1bdb7 Merge remote-tracking branch 'refs/remotes/origin/main' 2024-03-23 19:41:09 -04:00
Brett 9539efbb90 love 2024-03-23 19:41:03 -04:00
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
#include <config.h>
using image_data_t = std::array<blt::vec3, width * height>;
inline blt::area_allocator<image_data_t, 32> img_allocator;
inline blt::bump_allocator<image_data_t> img_allocator(8192);
class image
{

@ -1 +1 @@
Subproject commit 129f6e3fb9d6524e9fd6ece47f9bf4ea6f0a1a83
Subproject commit d8b77acd4f6d71393e65539e3ad738aebb3375e1

View File

@ -23,7 +23,7 @@
#include <queue>
#include <stack>
blt::area_allocator<node, 32000> node_allocator;
blt::bump_allocator<node> node_allocator(32000);
node* createNode(function_t type)
{