summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-02-12 21:59:04 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-02-12 22:33:02 +0100
commitb12ab4d805be81c2a9bdefaea77f640439ab1633 (patch)
tree57f39a6eb4c1d92cb11c34cb7cedfb2cc6b473f7 /src/common
parentcmake: Add Vulkan option (diff)
downloadyuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar
yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.gz
yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.bz2
yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.lz
yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.xz
yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.zst
yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.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 12f6d0114..a5e031189 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -232,6 +232,7 @@ void DebuggerBackend::Write(const Entry& entry) {
CLS(Render) \
SUB(Render, Software) \
SUB(Render, OpenGL) \
+ SUB(Render, Vulkan) \
CLS(Audio) \
SUB(Audio, DSP) \
SUB(Audio, Sink) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index d4ec31ec3..8ed6d5050 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -112,6 +112,7 @@ enum class Class : ClassType {
Render, ///< Emulator video output and hardware acceleration
Render_Software, ///< Software renderer backend
Render_OpenGL, ///< OpenGL backend
+ Render_Vulkan, ///< Vulkan backend
Audio, ///< Audio emulation
Audio_DSP, ///< The HLE implementation of the DSP
Audio_Sink, ///< Emulator audio output backend