diff options
author | bunnei <bunneidev@gmail.com> | 2019-02-14 16:06:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 16:06:48 +0100 |
commit | fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70 (patch) | |
tree | 05acdede20385a9d738666c59fb63aa9ca055a6a /src/common | |
parent | Merge pull request #2115 from lioncash/local (diff) | |
parent | vk_device: Abstract device handling into a class (diff) | |
download | yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.tar yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.tar.gz yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.tar.bz2 yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.tar.lz yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.tar.xz yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.tar.zst yuzu-fcc3aa0bbf4a1343f90dfc7a93afc31e770c3a70.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 1 |
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 |