1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2024-11-29 11:24:14 +01:00
rpi-vk-driver/driver/AlignedAllocator.h

16 lines
206 B
C
Raw Normal View History

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