use 64byte alignement
This commit is contained in:
parent
c39280deb2
commit
ecd2b08e49
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ void blt_copy(
|
|||
size_t size)
|
||||
{
|
||||
#if defined(_MSC_VER) || defined(__AVX__)
|
||||
if (!((DWORD)dst % 32) && !((DWORD)src % 32))
|
||||
if (!((DWORD)dst % 64) && !((DWORD)src % 64))
|
||||
{
|
||||
if (size >= 1024 * 4096 && g_blt_use_avx)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue