mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-12-13 01:08:53 +01:00
0ac879c294
as buffers can be reallocated
30 lines
912 B
C
30 lines
912 B
C
#pragma once
|
|
|
|
#if defined (__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "CustomAssert.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct ConsecutivePoolAllocator
|
|
{
|
|
char* buf; //preallocated buffer
|
|
uint32_t* nextFreeBlock;
|
|
unsigned blockSize;
|
|
unsigned size; //size is exact multiple of block size
|
|
} ConsecutivePoolAllocator;
|
|
|
|
ConsecutivePoolAllocator createConsecutivePoolAllocator(char* b, unsigned bs, unsigned s);
|
|
void destroyConsecutivePoolAllocator(ConsecutivePoolAllocator* pa);
|
|
uint32_t consecutivePoolAllocate(ConsecutivePoolAllocator* pa, uint32_t numBlocks);
|
|
void consecutivePoolFree(ConsecutivePoolAllocator* pa, void* p, uint32_t numBlocks);
|
|
uint32_t consecutivePoolReAllocate(ConsecutivePoolAllocator* pa, void* currentMem, uint32_t currNumBlocks);
|
|
void CPAdebugPrint(ConsecutivePoolAllocator* pa);
|
|
void* getCPAptrFromOffset(ConsecutivePoolAllocator* pa, uint32_t offset);
|
|
|
|
#if defined (__cplusplus)
|
|
}
|
|
#endif
|