align zbuffer on 32Bytes blocks

This commit is contained in:
Milang 2019-08-17 19:48:41 +02:00
parent 45ec1a4a35
commit 869a762637
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ static int32_t* address=0;
static const int32_t clearval[4]={3000,3000,3000,3000};
#define ALIGN 4
#define ALIGN 32
static void* buffer_malloc(uint_fast16_t size)
{
void *mem = malloc(size+ALIGN+sizeof(void*));