diff --git a/src/video_core/host1x/vic.cpp b/src/video_core/host1x/vic.cpp index 3dbbfa5552..02b54ef74e 100644 --- a/src/video_core/host1x/vic.cpp +++ b/src/video_core/host1x/vic.cpp @@ -34,6 +34,14 @@ extern "C" { #endif } +// GO FUCK YOURSELF +#if defined(__GNUC__) +#pragma GCC target("avx2") +#endif +#if defined(__clang__) +#pragma clang target("avx2") +#endif + #include "common/alignment.h" #include "common/assert.h" #include "common/bit_field.h" diff --git a/src/video_core/host1x/vic.h b/src/video_core/host1x/vic.h index e7600941ad..91c6b1ab69 100644 --- a/src/video_core/host1x/vic.h +++ b/src/video_core/host1x/vic.h @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +// SPDX-License-Identifier: GPL-3.0-or-later + // SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later