bump gfx pool size

This commit is contained in:
fgsfds 2020-07-07 15:03:45 +03:00
parent 1486bee60a
commit bc3e94b11e
3 changed files with 2 additions and 4 deletions

View File

@ -2,8 +2,7 @@
#define _DISPLAY_H
#include "types.h"
#define GFX_POOL_SIZE 64000
#include "memory.h"
extern u16 frameBufferIndex;
extern u32 gGlobalTimer;

View File

@ -9,8 +9,6 @@
#include "types.h"
#include "memory.h"
#define GFX_POOL_SIZE 64000
struct GfxPool {
Gfx buffer[GFX_POOL_SIZE];
struct SPTask spTask;

View File

@ -8,6 +8,7 @@
#define MEMORY_POOL_LEFT 0
#define MEMORY_POOL_RIGHT 1
#define GFX_POOL_SIZE (512 * 1024)
struct AllocOnlyPool
{