diff options
author | bunnei <bunneidev@gmail.com> | 2022-03-19 21:51:16 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2022-03-24 18:13:33 -0700 |
commit | ca12a77670d1463c2257bcdd829bb9bc56f1461b (patch) | |
tree | 8c6f7781383232909584d65e982376cb2e7ecd46 /src/video_core/surface.cpp | |
parent | 5849c9a4cdcb3cb18c2b63c390365d2a00ddb916 (diff) |
hle: nvflinger: Migrate android namespace -> Service::android.
Diffstat (limited to 'src/video_core/surface.cpp')
-rw-r--r-- | src/video_core/surface.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp index f7d29534e9..5f428d35d8 100644 --- a/src/video_core/surface.cpp +++ b/src/video_core/surface.cpp @@ -190,13 +190,13 @@ PixelFormat PixelFormatFromRenderTargetFormat(Tegra::RenderTargetFormat format) } } -PixelFormat PixelFormatFromGPUPixelFormat(android::PixelFormat format) { +PixelFormat PixelFormatFromGPUPixelFormat(Service::android::PixelFormat format) { switch (format) { - case android::PixelFormat::Rgba8888: + case Service::android::PixelFormat::Rgba8888: return PixelFormat::A8B8G8R8_UNORM; - case android::PixelFormat::Rgb565: + case Service::android::PixelFormat::Rgb565: return PixelFormat::R5G6B5_UNORM; - case android::PixelFormat::Bgra8888: + case Service::android::PixelFormat::Bgra8888: return PixelFormat::B8G8R8A8_UNORM; default: UNIMPLEMENTED_MSG("Unimplemented format={}", format); |