hle: nvflinger: Migrate android namespace -> Service::android.

This commit is contained in:
bunnei
2022-03-19 21:51:16 -07:00
parent 5849c9a4cd
commit ca12a77670
35 changed files with 76 additions and 79 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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