Compare commits
2 Commits
b8e55a102e
...
4b82f1bdb7
Author | SHA1 | Date |
---|---|---|
|
4b82f1bdb7 | |
|
9539efbb90 |
|
@ -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
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue