This commit is contained in:
Ivan
2022-06-28 10:36:24 +03:00
commit e4c8529305
160 changed files with 59023 additions and 0 deletions

20
thirdparty/sse2neon/SSE2NEONBinding.h vendored Normal file
View 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