summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-08-08 11:25:05 +0200
committermailwl <mailwl@gmail.com>2018-08-08 13:42:54 +0200
commitc0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859 (patch)
tree9467203defc9661957dd96fdf62fbf7a1e0fdb0e /src/core/hle/service/acc/acc.cpp
parentMerge pull request #972 from lioncash/catch (diff)
downloadyuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.tar
yuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.tar.gz
yuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.tar.bz2
yuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.tar.lz
yuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.tar.xz
yuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.tar.zst
yuzu-c0d44d3b2a8a7b71fbfdbbf5f718a97e6b5fc859.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/acc/acc.cpp23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index e952b0518..f3c5b1b9c 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -42,7 +42,7 @@ public:
{0, &IProfile::Get, "Get"},
{1, &IProfile::GetBase, "GetBase"},
{10, nullptr, "GetImageSize"},
- {11, nullptr, "LoadImage"},
+ {11, &IProfile::LoadImage, "LoadImage"},
};
RegisterHandlers(functions);
}
@@ -83,6 +83,27 @@ private:
rb.PushRaw(profile_base);
}
+ void LoadImage(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_ACC, "(STUBBED) called");
+ // smallest jpeg https://github.com/mathiasbynens/small/blob/master/jpeg.jpg
+ // TODO(mailwl): load actual profile image from disk, width 256px, max size 0x20000
+ const u32 jpeg_size = 107;
+ static const std::array<u8, jpeg_size> jpeg{
+ 0xff, 0xd8, 0xff, 0xdb, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03,
+ 0x02, 0x02, 0x02, 0x03, 0x03, 0x03, 0x03, 0x04, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04,
+ 0x08, 0x06, 0x06, 0x05, 0x06, 0x09, 0x08, 0x0a, 0x0a, 0x09, 0x08, 0x09, 0x09, 0x0a,
+ 0x0c, 0x0f, 0x0c, 0x0a, 0x0b, 0x0e, 0x0b, 0x09, 0x09, 0x0d, 0x11, 0x0d, 0x0e, 0x0f,
+ 0x10, 0x10, 0x11, 0x10, 0x0a, 0x0c, 0x12, 0x13, 0x12, 0x10, 0x13, 0x0f, 0x10, 0x10,
+ 0x10, 0xff, 0xc9, 0x00, 0x0b, 0x08, 0x00, 0x01, 0x00, 0x01, 0x01, 0x01, 0x11, 0x00,
+ 0xff, 0xcc, 0x00, 0x06, 0x00, 0x10, 0x10, 0x05, 0xff, 0xda, 0x00, 0x08, 0x01, 0x01,
+ 0x00, 0x00, 0x3f, 0x00, 0xd2, 0xcf, 0x20, 0xff, 0xd9,
+ };
+ ctx.WriteBuffer(jpeg.data(), jpeg_size);
+ IPC::ResponseBuilder rb{ctx, 3};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push<u32>(jpeg_size);
+ }
+
u128 user_id; ///< The user id this profile refers to.
};