summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-10 23:08:55 +0100
committerbunnei <bunneidev@gmail.com>2015-03-10 23:08:55 +0100
commitb56829df020a81248dd04688ff2b307f3444a09f (patch)
tree24a438627339b2d506e659adfa0873cdf037852a /src/common
parentMerge pull request #649 from lioncash/clean (diff)
parentAdded LCD registers, and implementation for color filling in OGL code. (diff)
downloadyuzu-b56829df020a81248dd04688ff2b307f3444a09f.tar
yuzu-b56829df020a81248dd04688ff2b307f3444a09f.tar.gz
yuzu-b56829df020a81248dd04688ff2b307f3444a09f.tar.bz2
yuzu-b56829df020a81248dd04688ff2b307f3444a09f.tar.lz
yuzu-b56829df020a81248dd04688ff2b307f3444a09f.tar.xz
yuzu-b56829df020a81248dd04688ff2b307f3444a09f.tar.zst
yuzu-b56829df020a81248dd04688ff2b307f3444a09f.zip
Diffstat (limited to 'src/common')
-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 7b479b569..649640e72 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -45,6 +45,7 @@ static std::shared_ptr<Logger> global_logger;
SUB(Service, SOC) \
CLS(HW) \
SUB(HW, Memory) \
+ SUB(HW, LCD) \
SUB(HW, GPU) \
CLS(Frontend) \
CLS(Render) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 7b67b3c07..83d64145b 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -65,6 +65,7 @@ enum class Class : ClassType {
Service_SOC, ///< The SOC (Socket) service
HW, ///< Low-level hardware emulation
HW_Memory, ///< Memory-map and address translation
+ HW_LCD, ///< LCD register emulation
HW_GPU, ///< GPU control emulation
Frontend, ///< Emulator UI
Render, ///< Emulator video output and hardware acceleration