1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibGUI: Window icons no longer need to be backed by shbufs

This allows us to remove Window::create_shared_bitmap() entirely.
This commit is contained in:
Andreas Kling 2021-01-15 23:16:33 +01:00
parent 333366a99d
commit 71f50b6e94
2 changed files with 1 additions and 14 deletions

View file

@ -223,7 +223,6 @@ private:
void server_did_destroy();
OwnPtr<WindowBackingStore> create_backing_store(const Gfx::IntSize&);
RefPtr<Gfx::Bitmap> create_shared_bitmap(Gfx::BitmapFormat, const Gfx::IntSize&);
void set_current_backing_store(WindowBackingStore&, bool flush_immediately = false);
void flip(const Vector<Gfx::IntRect, 32>& dirty_rects);
void force_update();