v1
This commit is contained in:
20
thirdparty/sse2neon/SSE2NEONBinding.h
vendored
Normal file
20
thirdparty/sse2neon/SSE2NEONBinding.h
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef SSE2NEONBINDING_H
|
||||
#define SSE2NEONBINDING_H
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
// The SSE2NEON unit tests run both within our own internal project
|
||||
// as well as within the open source framework.
|
||||
// This header file is used to abstract any distinctions between
|
||||
// those two build environments.
|
||||
//
|
||||
// Initially, this is for how 16 byte aligned memory is allocated
|
||||
namespace SSE2NEON
|
||||
{
|
||||
|
||||
void* platformAlignedAlloc(size_t size);
|
||||
void platformAlignedFree(void* ptr);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user