Compare commits
No commits in common. "4b82f1bdb7cf1756c9cb52705aeb122b74e2a748" and "b8e55a102e4310e067e5e9f977735592beb0873c" have entirely different histories.
4b82f1bdb7
...
b8e55a102e
|
@ -30,7 +30,7 @@
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
using image_data_t = std::array<blt::vec3, width * height>;
|
using image_data_t = std::array<blt::vec3, width * height>;
|
||||||
inline blt::bump_allocator<image_data_t> img_allocator(8192);
|
inline blt::area_allocator<image_data_t, 32> img_allocator;
|
||||||
|
|
||||||
class image
|
class image
|
||||||
{
|
{
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d8b77acd4f6d71393e65539e3ad738aebb3375e1
|
Subproject commit 129f6e3fb9d6524e9fd6ece47f9bf4ea6f0a1a83
|
|
@ -23,7 +23,7 @@
|
||||||
#include <queue>
|
#include <queue>
|
||||||
#include <stack>
|
#include <stack>
|
||||||
|
|
||||||
blt::bump_allocator<node> node_allocator(32000);
|
blt::area_allocator<node, 32000> node_allocator;
|
||||||
|
|
||||||
node* createNode(function_t type)
|
node* createNode(function_t type)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue