Files
UnrealEngine/Engine/Plugins/Media/AjaMedia/Source/Aja/Private/SSE2MemCpy.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

12 lines
298 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
namespace AJA
{
namespace Private
{
bool IsSSE2Available();
bool IsCorrectlyAlignedForSSE2MemCpy(const void* InDst, const void* InSrc, unsigned int InSize);
void SSE2MemCpy(const void* InDst, const void* InSrc, unsigned int InSize);
}
}