aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvflinger/ui
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/ui
parent5849c9a4cdcb3cb18c2b63c390365d2a00ddb916 (diff)
hle: nvflinger: Migrate android namespace -> Service::android.
Diffstat (limited to 'src/core/hle/service/nvflinger/ui')
-rw-r--r--src/core/hle/service/nvflinger/ui/fence.h4
-rw-r--r--src/core/hle/service/nvflinger/ui/graphic_buffer.h4
-rw-r--r--src/core/hle/service/nvflinger/ui/rect.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/nvflinger/ui/fence.h b/src/core/hle/service/nvflinger/ui/fence.h
index 80ce98782..4a74e26a3 100644
--- a/src/core/hle/service/nvflinger/ui/fence.h
+++ b/src/core/hle/service/nvflinger/ui/fence.h
@@ -11,7 +11,7 @@
#include "common/common_types.h"
#include "core/hle/service/nvdrv/nvdata.h"
-namespace android {
+namespace Service::android {
class Fence {
public:
@@ -29,4 +29,4 @@ public:
};
static_assert(sizeof(Fence) == 36, "Fence has wrong size");
-} // namespace android
+} // namespace Service::android
diff --git a/src/core/hle/service/nvflinger/ui/graphic_buffer.h b/src/core/hle/service/nvflinger/ui/graphic_buffer.h
index 2e7f251ef..7abbf78ba 100644
--- a/src/core/hle/service/nvflinger/ui/graphic_buffer.h
+++ b/src/core/hle/service/nvflinger/ui/graphic_buffer.h
@@ -10,7 +10,7 @@
#include "common/common_types.h"
#include "core/hle/service/nvflinger/pixel_format.h"
-namespace android {
+namespace Service::android {
class GraphicBuffer final {
public:
@@ -97,4 +97,4 @@ private:
};
static_assert(sizeof(GraphicBuffer) == 0x16C, "GraphicBuffer has wrong size");
-} // namespace android
+} // namespace Service::android
diff --git a/src/core/hle/service/nvflinger/ui/rect.h b/src/core/hle/service/nvflinger/ui/rect.h
index 847f6f4ae..c7b5f1815 100644
--- a/src/core/hle/service/nvflinger/ui/rect.h
+++ b/src/core/hle/service/nvflinger/ui/rect.h
@@ -11,7 +11,7 @@
#include "common/common_types.h"
-namespace android {
+namespace Service::android {
class Rect final {
public:
@@ -72,4 +72,4 @@ private:
};
static_assert(sizeof(Rect) == 16, "Rect has wrong size");
-} // namespace android
+} // namespace Service::android