ladybird/Libraries/LibGfx/ShareableBitmap.h

45 lines
783 B
C
Raw Normal View History

2020-04-06 09:09:01 +00:00
/*
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
2020-04-06 09:09:01 +00:00
*
* SPDX-License-Identifier: BSD-2-Clause
2020-04-06 09:09:01 +00:00
*/
#pragma once
#include <AK/RefPtr.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Size.h>
#include <LibIPC/Forward.h>
namespace Gfx {
class ShareableBitmap {
public:
ShareableBitmap() = default;
enum Tag { ConstructWithKnownGoodBitmap };
ShareableBitmap(NonnullRefPtr<Gfx::Bitmap>, Tag);
bool is_valid() const { return m_bitmap; }
2022-04-01 17:58:27 +00:00
Bitmap const* bitmap() const { return m_bitmap; }
Bitmap* bitmap() { return m_bitmap; }
private:
friend class Bitmap;
RefPtr<Bitmap> m_bitmap;
};
}
namespace IPC {
template<>
ErrorOr<void> encode(Encoder&, Gfx::ShareableBitmap const&);
template<>
ErrorOr<Gfx::ShareableBitmap> decode(Decoder&);
}