1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:17:34 +00:00

LibGfx: Make FloatPoint compatible with IPC

This commit is contained in:
Lucas CHOLLET 2024-02-14 01:07:55 -05:00 committed by Sam Atkins
parent 41c76e6ba6
commit 8dd887b3c8
2 changed files with 17 additions and 2 deletions

View file

@ -306,9 +306,13 @@ namespace IPC {
template<>
ErrorOr<void> encode(Encoder&, Gfx::IntPoint const&);
template<>
ErrorOr<void> encode(Encoder&, Gfx::FloatPoint const&);
template<>
ErrorOr<Gfx::IntPoint> decode(Decoder&);
template<>
ErrorOr<Gfx::FloatPoint> decode(Decoder&);
}