summaryrefslogtreecommitdiffstats
path: root/src/common/logging
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-02-25 06:12:33 +0100
committerGitHub <noreply@github.com>2017-02-25 06:12:33 +0100
commit892888ed9e7c683150493c7c17f567d3c569e62e (patch)
treefffbfb393fc1da4b6c69a9c0593d2fe8ef9a10a7 /src/common/logging
parentMerge pull request #2421 from Subv/timers (diff)
parentexternals: remove -march=native for crypto++ (diff)
downloadyuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar
yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.gz
yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.bz2
yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.lz
yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.xz
yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.tar.zst
yuzu-892888ed9e7c683150493c7c17f567d3c569e62e.zip
Diffstat (limited to 'src/common/logging')
-rw-r--r--src/common/logging/backend.cpp1
-rw-r--r--src/common/logging/log.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 0f0354821..737e1d57f 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -63,6 +63,7 @@ namespace Log {
SUB(HW, Memory) \
SUB(HW, LCD) \
SUB(HW, GPU) \
+ SUB(HW, AES) \
CLS(Frontend) \
CLS(Render) \
SUB(Render, Software) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index f0ec922d2..4b0f8ff03 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -80,6 +80,7 @@ enum class Class : ClassType {
HW_Memory, ///< Memory-map and address translation
HW_LCD, ///< LCD register emulation
HW_GPU, ///< GPU control emulation
+ HW_AES, ///< AES engine emulation
Frontend, ///< Emulator UI
Render, ///< Emulator video output and hardware acceleration
Render_Software, ///< Software renderer backend