1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-19 11:52:16 +01:00
rpi-vk-driver/driver/AlignedAllocator.h

16 lines
206 B
C
Raw Normal View History

2018-05-10 22:10:35 +01:00
#pragma once
2018-05-13 15:29:15 +01:00
#if defined (__cplusplus)
extern "C" {
#endif
2018-05-12 13:24:25 +01:00
#include <stdlib.h>
2018-05-10 22:10:35 +01:00
2018-08-26 14:11:43 +01:00
void* alignedAlloc( unsigned bytes, unsigned alignment );
void alignedFree( void* p );
2018-05-13 15:29:15 +01:00
#if defined (__cplusplus)
}
#endif