diff options
| author | 2019-02-12 17:59:04 -0300 | |
|---|---|---|
| committer | 2019-02-12 18:33:02 -0300 | |
| commit | b12ab4d805be81c2a9bdefaea77f640439ab1633 (patch) | |
| tree | 57f39a6eb4c1d92cb11c34cb7cedfb2cc6b473f7 /src | |
| parent | cmake: Add Vulkan option (diff) | |
| download | yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.gz yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.tar.xz yuzu-b12ab4d805be81c2a9bdefaea77f640439ab1633.zip | |
logging: Add Vulkan backend logging class type
Diffstat (limited to 'src')
| -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) { | |||
| 232 | CLS(Render) \ | 232 | CLS(Render) \ |
| 233 | SUB(Render, Software) \ | 233 | SUB(Render, Software) \ |
| 234 | SUB(Render, OpenGL) \ | 234 | SUB(Render, OpenGL) \ |
| 235 | SUB(Render, Vulkan) \ | ||
| 235 | CLS(Audio) \ | 236 | CLS(Audio) \ |
| 236 | SUB(Audio, DSP) \ | 237 | SUB(Audio, DSP) \ |
| 237 | SUB(Audio, Sink) \ | 238 | 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 { | |||
| 112 | Render, ///< Emulator video output and hardware acceleration | 112 | Render, ///< Emulator video output and hardware acceleration |
| 113 | Render_Software, ///< Software renderer backend | 113 | Render_Software, ///< Software renderer backend |
| 114 | Render_OpenGL, ///< OpenGL backend | 114 | Render_OpenGL, ///< OpenGL backend |
| 115 | Render_Vulkan, ///< Vulkan backend | ||
| 115 | Audio, ///< Audio emulation | 116 | Audio, ///< Audio emulation |
| 116 | Audio_DSP, ///< The HLE implementation of the DSP | 117 | Audio_DSP, ///< The HLE implementation of the DSP |
| 117 | Audio_Sink, ///< Emulator audio output backend | 118 | Audio_Sink, ///< Emulator audio output backend |