aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvflinger/consumer_base.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-19 21:51:16 -0700
committerbunnei <bunneidev@gmail.com>2022-03-24 18:13:33 -0700
commitca12a77670d1463c2257bcdd829bb9bc56f1461b (patch)
tree8c6f7781383232909584d65e982376cb2e7ecd46 /src/core/hle/service/nvflinger/consumer_base.cpp
parent5849c9a4cdcb3cb18c2b63c390365d2a00ddb916 (diff)
hle: nvflinger: Migrate android namespace -> Service::android.
Diffstat (limited to 'src/core/hle/service/nvflinger/consumer_base.cpp')
-rw-r--r--src/core/hle/service/nvflinger/consumer_base.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/consumer_base.cpp b/src/core/hle/service/nvflinger/consumer_base.cpp
index 127e5930b..c752ffc8e 100644
--- a/src/core/hle/service/nvflinger/consumer_base.cpp
+++ b/src/core/hle/service/nvflinger/consumer_base.cpp
@@ -12,7 +12,7 @@
#include "core/hle/service/nvflinger/consumer_base.h"
#include "core/hle/service/nvflinger/ui/graphic_buffer.h"
-namespace android {
+namespace Service::android {
ConsumerBase::ConsumerBase(std::unique_ptr<BufferQueueConsumer> consumer_)
: consumer{std::move(consumer_)} {}
@@ -126,4 +126,4 @@ bool ConsumerBase::StillTracking(s32 slot, const std::shared_ptr<GraphicBuffer>
slots[slot].graphic_buffer->Handle() == graphic_buffer->Handle());
}
-} // namespace android
+} // namespace Service::android