diff options
| author | 2015-05-22 14:06:20 -0700 | |
|---|---|---|
| committer | 2015-05-22 14:06:20 -0700 | |
| commit | eca2b71fa8a6c4c104695b866952e4295dc6466f (patch) | |
| tree | 64691311c19260dc959119e5802ad72a70f4862c /src/common | |
| parent | Merge pull request #795 from lioncash/clang (diff) | |
| parent | Service::Y2R: Support for grayscale decoding of specific formats (diff) | |
| download | yuzu-eca2b71fa8a6c4c104695b866952e4295dc6466f.tar.gz yuzu-eca2b71fa8a6c4c104695b866952e4295dc6466f.tar.xz yuzu-eca2b71fa8a6c4c104695b866952e4295dc6466f.zip | |
Merge pull request #798 from yuriks/y2r-bw
Service::Y2R: Support for grayscale decoding of specific formats
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 bd2c6a153..6ca8cb78d 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -45,6 +45,7 @@ namespace Log { | |||
| 45 | SUB(Service, DSP) \ | 45 | SUB(Service, DSP) \ |
| 46 | SUB(Service, HID) \ | 46 | SUB(Service, HID) \ |
| 47 | SUB(Service, SOC) \ | 47 | SUB(Service, SOC) \ |
| 48 | SUB(Service, Y2R) \ | ||
| 48 | CLS(HW) \ | 49 | CLS(HW) \ |
| 49 | SUB(HW, Memory) \ | 50 | SUB(HW, Memory) \ |
| 50 | SUB(HW, LCD) \ | 51 | SUB(HW, LCD) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index fd87ddbe6..d720d7fe0 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -65,6 +65,7 @@ enum class Class : ClassType { | |||
| 65 | Service_DSP, ///< The DSP (DSP control) service | 65 | Service_DSP, ///< The DSP (DSP control) service |
| 66 | Service_HID, ///< The HID (User input) service | 66 | Service_HID, ///< The HID (User input) service |
| 67 | Service_SOC, ///< The SOC (Socket) service | 67 | Service_SOC, ///< The SOC (Socket) service |
| 68 | Service_Y2R, ///< The Y2R (YUV to RGB conversion) service | ||
| 68 | HW, ///< Low-level hardware emulation | 69 | HW, ///< Low-level hardware emulation |
| 69 | HW_Memory, ///< Memory-map and address translation | 70 | HW_Memory, ///< Memory-map and address translation |
| 70 | HW_LCD, ///< LCD register emulation | 71 | HW_LCD, ///< LCD register emulation |