diff options
| author | 2018-01-11 20:07:44 -0700 | |
|---|---|---|
| committer | 2018-01-12 19:11:03 -0700 | |
| commit | 1d28b2e142f845773e2b90e267d9632e196a99b9 (patch) | |
| tree | 027a3586a0fc927731afb3711c328c6dafc8551f /src/core/hw/aes/arithmetic128.h | |
| parent | Massive removal of unused modules (diff) | |
| download | yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.tar.gz yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.tar.xz yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.zip | |
Remove references to PICA and rasterizers in video_core
Diffstat (limited to 'src/core/hw/aes/arithmetic128.h')
| -rw-r--r-- | src/core/hw/aes/arithmetic128.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/core/hw/aes/arithmetic128.h b/src/core/hw/aes/arithmetic128.h deleted file mode 100644 index d670e2ce2..000000000 --- a/src/core/hw/aes/arithmetic128.h +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | // Copyright 2017 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "common/common_types.h" | ||
| 8 | #include "core/hw/aes/key.h" | ||
| 9 | |||
| 10 | namespace HW { | ||
| 11 | namespace AES { | ||
| 12 | AESKey Lrot128(const AESKey& in, u32 rot); | ||
| 13 | AESKey Add128(const AESKey& a, const AESKey& b); | ||
| 14 | AESKey Xor128(const AESKey& a, const AESKey& b); | ||
| 15 | |||
| 16 | } // namspace AES | ||
| 17 | } // namespace HW | ||